1
0
Fork 0
puter/profiles/server/networking.nix

14 lines
144 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{
config,
lib,
...
}:
let
cfg = config.profiles.server;
in
{
config = lib.mkIf cfg.enable {
2025-05-18 01:08:10 +02:00
networking.useNetworkd = true;
2025-05-11 22:49:04 +02:00
};
}