1
0

profiles/mercury-vm,profiles/cybercluster-vm: Add profiles for Proxmox VMs

This commit is contained in:
2025-03-16 12:19:08 +01:00
parent 97d826ef89
commit a0a298689e
18 changed files with 82 additions and 31 deletions
configuration/proxmox-vm
hosts
profiles
cybercluster-vm
default.nix
fem-net
mercury-vm

@@ -0,0 +1,16 @@
{ config, lib, ... }:
with lib;
{
options.profiles.clerie.fem-net = {
enable = mkEnableOption "Profile for FeM-Net";
};
config = mkIf config.profiles.clerie.fem-net.enable {
networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ];
};
}