Change structure, add scanner deps and fix configurations

This commit is contained in:
2026-04-10 23:26:05 +02:00
parent d94d17b139
commit 1df132a22d
16 changed files with 68 additions and 110 deletions
@@ -0,0 +1,23 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.networking;
in
{
options.os.networking = {
enable = mkEnableOption "System networks manager service";
};
config = mkIf cfg.enable {
services.resolved.enable = true;
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
networking.networkmanager.enable = true;
};
}