Added networking

This commit is contained in:
2026-03-13 23:48:55 +01:00
parent 8da47fabc4
commit 1574a5ae47
5 changed files with 462 additions and 370 deletions
@@ -0,0 +1,20 @@
{ config, pkgs, ... }:
{
# Enable NetworkManager
services.NetworkManager = {
enable = true;
dhcpcd.enable = false; # Ensure dhcpcd is disabled to avoid conflicts
};
# Install NetworkManager and wofi
environment.systemPackages = with pkgs; [
networkmanager
wofi
];
# Ensure the user is in the necessary groups
users.users.${config.users.users."henrov".username} = {
extraGroups = [ "networkmanager" ];
};
}