19 lines
319 B
Nix
19 lines
319 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;
|
||
|
|
||
|
}
|