Added airgear
This commit is contained in:
parent
a2addd2997
commit
c88e445bbd
|
@ -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
21
hosts/airgead.nix
Normal 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
|
||||||
|
}
|
Loading…
Reference in a new issue