Added airgear

This commit is contained in:
Craige McWhirter 2020-05-12 14:00:32 +10:00
parent a2addd2997
commit c88e445bbd
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
2 changed files with 28 additions and 6 deletions

View file

@ -13,12 +13,13 @@
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
}; };
cuallaidh = import ../hosts/cuallaidh.nix; airgead = import ../hosts/airgead.nix;
iolear-beag = import ../hosts/iolear-beag.nix; cuallaidh = import ../hosts/cuallaidh.nix;
iolear-beag = import ../hosts/iolear-beag.nix;
paidh-ceithir = import ../hosts/paidh-ceithir.nix; paidh-ceithir = import ../hosts/paidh-ceithir.nix;
paidh-coig = import ../hosts/paidh-coig.nix; paidh-coig = import ../hosts/paidh-coig.nix;
paidh-tri = import ../hosts/paidh-tri.nix; paidh-tri = import ../hosts/paidh-tri.nix;
sithlainnir = import ../hosts/sithlainnir.nix; sithlainnir = import ../hosts/sithlainnir.nix;
teintidh = import ../hosts/teintidh.nix; teintidh = import ../hosts/teintidh.nix;
} }

21
hosts/airgead.nix Normal file
View file

@ -0,0 +1,21 @@
# NixOps configuration for airgead
{ config, pkgs, lib, ... }:
{
imports =
[
../clusters/linode-encrypted.nix
];
deployment.targetHost = "172.105.184.221";
networking.hostName = "airgead"; # Define your hostname.
nix.nixPath = [
"nixpkgs=https://nixos.org/channels/nixos-20.03/nixexprs.tar.xz"
];
system.stateVersion = "20.03"; # The version of NixOS originally installed
}