31 lines
894 B
Nix
31 lines
894 B
Nix
|
# NixOps configuration for the mio-ops nodes
|
||
|
|
||
|
{
|
||
|
network = {
|
||
|
description = "mio-ops nodes";
|
||
|
enableRollback = true;
|
||
|
};
|
||
|
|
||
|
network.storage.legacy = { databasefile = "~/.nixops/deployments.nixops"; };
|
||
|
|
||
|
defaults = { config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
|
||
|
};
|
||
|
|
||
|
airgead = import hosts/airgead.nix;
|
||
|
ceilidh = import hosts/ceilidh.nix;
|
||
|
cuallaidh = import hosts/cuallaidh.nix;
|
||
|
dhu = import hosts/dhu.nix;
|
||
|
dionach = import hosts/dionach.nix;
|
||
|
iolear-beag = import hosts/iolear-beag.nix;
|
||
|
paidh-ceithir = import hosts/paidh-ceithir.nix;
|
||
|
paidh-coig = import hosts/paidh-coig.nix;
|
||
|
paidh-dha = import hosts/paidh-dha.nix;
|
||
|
paidh-tri = import hosts/paidh-tri.nix;
|
||
|
paidh-uachdar = import hosts/paidh-uachdar.nix;
|
||
|
sithlainnir = import hosts/sithlainnir.nix;
|
||
|
teintidh = import hosts/teintidh.nix;
|
||
|
}
|