2021-10-07 02:13:48 +00:00
|
|
|
# NixOps configuration for the jfdic-ops nodes
|
|
|
|
|
|
|
|
{
|
|
|
|
network = {
|
|
|
|
description = "jfdic-ops nodes";
|
|
|
|
enableRollback = true;
|
|
|
|
};
|
|
|
|
|
2022-06-29 07:53:26 +00:00
|
|
|
network.storage.legacy = {
|
|
|
|
databasefile = "~/.nixops/deployments.nixops";
|
|
|
|
};
|
2021-10-07 02:13:48 +00:00
|
|
|
|
|
|
|
defaults =
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
system.autoUpgrade.enable = false; # Disabled as it conflicts with NixOps
|
|
|
|
};
|
|
|
|
|
2022-06-29 07:53:26 +00:00
|
|
|
toscano = import ./hosts/toscano.nix;
|
2021-10-07 02:13:48 +00:00
|
|
|
}
|