mio-ops/hosts/paidh-tri.nix
Craige McWhirter b56eabf1ba
Bumped to 20.03
2020-04-26 18:22:59 +10:00

26 lines
710 B
Nix

# NixOps configuration for pàidh-tri
{ config, pkgs, lib, ... }:
{
imports = [
../clusters/pi3B_rack.nix
];
# Comment out deployment when building the SD Image.
deployment.targetHost = "10.69.0.203";
networking.hostName = "paidh-tri"; # Define your hostname.
environment.systemPackages = with pkgs; [
gnupg # GPL OpenPGP implementation
nix-zsh-completions # ZSH completions for Nix, NixOS, and NixOps
nixops # NixOS cloud provisioning and deployment tool
];
nix.nixPath = [
"nixpkgs=https://nixos.org/channels/nixos-20.03/nixexprs.tar.xz"
];
system.stateVersion = "19.09"; # The version of NixOS originally installed
}