Split network module.

This commit is contained in:
2023-06-30 10:38:15 +01:00
parent 153a181cbc
commit 3ccb9b3df7
3 changed files with 4 additions and 6 deletions

View File

@@ -6,10 +6,4 @@
./user-ppetru.nix ./user-ppetru.nix
./unattended-encryption.nix ./unattended-encryption.nix
]; ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
} }

View File

@@ -2,6 +2,7 @@
imports = [ imports = [
./boot.nix ./boot.nix
./locale.nix ./locale.nix
./network.nix
./packages.nix ./packages.nix
./sudo.nix ./sudo.nix
]; ];

View File

@@ -0,0 +1,3 @@
{
networking.networkmanager.enable = true;
}