1
0
Fork 0
puter/profiles/server/networking.nix
2025-05-18 01:08:10 +02:00

13 lines
144 B
Nix

{
config,
lib,
...
}:
let
cfg = config.profiles.server;
in
{
config = lib.mkIf cfg.enable {
networking.useNetworkd = true;
};
}