10 lines
166 B
Nix
10 lines
166 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
# Enable networking
|
||
|
networking.networkmanager.enable = true;
|
||
|
users.users.${config.host.user}.extraGroups = ["networkmanager"];
|
||
|
}
|