mio-ops/hosts/paidh-tri.nix
2020-12-31 11:55:41 +10:00

22 lines
617 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.42.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
];
system.stateVersion = "20.09"; # The version of NixOS originally installed
}