install networkmanager as core
This commit is contained in:
parent
9f4092ef91
commit
1e8cda0c79
2 changed files with 4 additions and 3 deletions
|
|
@ -21,8 +21,6 @@
|
||||||
boot.initrd.luks.devices."luks-433a5889-6f18-4c9a-8d99-db02af39bdee".device =
|
boot.initrd.luks.devices."luks-433a5889-6f18-4c9a-8d99-db02af39bdee".device =
|
||||||
"/dev/disk/by-uuid/433a5889-6f18-4c9a-8d99-db02af39bdee";
|
"/dev/disk/by-uuid/433a5889-6f18-4c9a-8d99-db02af39bdee";
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
||||||
i18n.extraLocaleSettings.LC_ALL = "en_AU.UTF-8";
|
i18n.extraLocaleSettings.LC_ALL = "en_AU.UTF-8";
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,10 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf config.${feature}.enable {
|
config = lib.mkIf config.${feature}.enable {
|
||||||
networking.hostName = "${hostName}";
|
networking = {
|
||||||
|
hostName = "${hostName}";
|
||||||
|
networkmanager.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [ ];
|
imports = [ ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue