mio-ops/deployments/mio-ops.nix

22 lines
437 B
Nix
Raw Normal View History

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-09 06:20:38 +00:00
pi-ceithir = import hosts/pi-ceithir.nix;
2019-12-09 06:23:39 +00:00
pi-coig = import hosts/pi-coig.nix;
2019-12-09 06:18:58 +00:00
pi-tri = import hosts/pi-tri.nix;
2019-12-09 05:03:51 +00:00
}