nix-config/modules/both/networking.nix
Gabe Venberg fe1ed3e1be IN PROGRESS COMMIT. does not currently build.
Attempting to make nixos config that incorperates a non-nixos HM config.
2024-04-03 17:50:53 -05:00

10 lines
166 B
Nix

{
config,
pkgs,
...
}: {
# Enable networking
networking.networkmanager.enable = true;
users.users.${config.host.user}.extraGroups = ["networkmanager"];
}