This commit is contained in:
2025-08-15 12:25:44 +00:00
parent ded46ebce2
commit db35c08fc6
9 changed files with 67 additions and 14 deletions

View File

@@ -10,7 +10,6 @@
# ./mnt-clusterstore.nix
./nomad.nix
./consul.nix
./cifs.nix
inputs.sops-nix.nixosModules.sops
];
@@ -21,6 +20,20 @@
description = "Path to the Secrets storage";
};
options.custom._Networkinterface = lib.mkOption {
type = lib.types.str;
default = "end0";
description = "Network interface name to bind to.";
example = "enp3s0";
};
options.custom.VIP_Priority = lib.mkOption {
type = lib.types.int;
default = 50;
description = "Keep alived prority for voting";
};
config = {
system.stateVersion = "23.11"; # Did you read the comment?
nixpkgs.config.allowUnfree = true;