2019-12-09 05:03:51 +00:00
|
|
|
# NixOps configuration for the mio-ops nodes
|
|
|
|
|
|
|
|
{
|
|
|
|
network = {
|
|
|
|
description = "mio-ops nodes";
|
|
|
|
enableRollback = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
defaults =
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
|
|
|
|
};
|
|
|
|
|
|
|
|
cuallaidh = import ../hosts/cuallaidh.nix;
|
2019-12-12 23:01:03 +00:00
|
|
|
iolear-beag = import ../hosts/iolear-beag.nix;
|
2019-12-10 14:34:13 +00:00
|
|
|
pi-ceithir = import ../hosts/pi-ceithir.nix;
|
|
|
|
pi-coig = import ../hosts/pi-coig.nix;
|
|
|
|
pi-tri = import ../hosts/pi-tri.nix;
|
2019-12-12 23:01:03 +00:00
|
|
|
sithlainnir = import ../hosts/sithlainnir.nix;
|
2019-12-10 14:34:13 +00:00
|
|
|
teintidh = import ../hosts/teintidh.nix;
|
2019-12-09 05:03:51 +00:00
|
|
|
|
|
|
|
}
|