1
0

profiles/common-dns,profiles/common: Enable systemd-resolved everywhere

This commit is contained in:
2025-03-22 14:34:40 +01:00
parent 552d2a964c
commit 75777aa68c
4 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ 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;
};
}