install networkmanager as core

This commit is contained in:
wi11-holdsworth 2025-07-17 14:24:08 +10:00
parent 9f4092ef91
commit 1e8cda0c79
2 changed files with 4 additions and 3 deletions

View file

@ -9,7 +9,10 @@ let
in
{
config = lib.mkIf config.${feature}.enable {
networking.hostName = "${hostName}";
networking = {
hostName = "${hostName}";
networkmanager.enable = true;
};
};
imports = [ ];