mio-ops/deployments/mio-ops.nix

29 lines
758 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;
};
2020-09-17 01:13:07 +00:00
resources.sshKeyPairs.ssh-key = {};
2019-12-09 05:03:51 +00:00
defaults =
{ config, pkgs, lib, ... }:
{
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
};
2020-05-12 04:00:32 +00:00
airgead = import ../hosts/airgead.nix;
cuallaidh = import ../hosts/cuallaidh.nix;
2020-06-23 00:49:45 +00:00
dionach = import ../hosts/dionach.nix;
2020-05-12 04:00:32 +00:00
iolear-beag = import ../hosts/iolear-beag.nix;
2020-03-09 22:30:27 +00:00
paidh-ceithir = import ../hosts/paidh-ceithir.nix;
2020-05-12 04:00:32 +00:00
paidh-coig = import ../hosts/paidh-coig.nix;
paidh-tri = import ../hosts/paidh-tri.nix;
sithlainnir = import ../hosts/sithlainnir.nix;
teintidh = import ../hosts/teintidh.nix;
2019-12-09 05:03:51 +00:00
}