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,6 +13,7 @@
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
}; };
airgead = import ../hosts/airgead.nix;
cuallaidh = import ../hosts/cuallaidh.nix; cuallaidh = import ../hosts/cuallaidh.nix;
iolear-beag = import ../hosts/iolear-beag.nix; iolear-beag = import ../hosts/iolear-beag.nix;
paidh-ceithir = import ../hosts/paidh-ceithir.nix; paidh-ceithir = import ../hosts/paidh-ceithir.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
}