configuration
flake
hosts
lib
modules
pkgs
profiles
common
default.nix
common-dns
common-networking
cybercluster-vm
dn42-router
fem-net
hetzner-cloud
mercury-vm
netcup
network-fallback-dhcp
serial-console
wg-clerie
default.nix
users
.gitignore
README.md
flake.lock
flake.nix
20 lines
343 B
Nix
20 lines
343 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
options.profiles.clerie.common = {
|
|
enable = mkEnableOption "Cleries common config";
|
|
};
|
|
|
|
config = mkIf config.profiles.clerie.common.enable {
|
|
|
|
profiles.clerie.common-dns.enable = true;
|
|
|
|
# Disabled while we are still in transition
|
|
#profiles.clerie.common-network.enable = true;
|
|
|
|
};
|
|
}
|