22 lines
437 B
Nix
22 lines
437 B
Nix
# 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;
|
|
pi-ceithir = import hosts/pi-ceithir.nix;
|
|
pi-coig = import hosts/pi-coig.nix;
|
|
pi-tri = import hosts/pi-tri.nix;
|
|
|
|
}
|