Added airgear
This commit is contained in:
parent
a2addd2997
commit
c88e445bbd
|
@ -13,6 +13,7 @@
|
|||
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
|
||||
};
|
||||
|
||||
airgead = import ../hosts/airgead.nix;
|
||||
cuallaidh = import ../hosts/cuallaidh.nix;
|
||||
iolear-beag = import ../hosts/iolear-beag.nix;
|
||||
paidh-ceithir = import ../hosts/paidh-ceithir.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