d7e2c0a924
Will this ever change? No like likely, but I do think that this is the correct way to do this.
7 lines
211 B
Nix
7 lines
211 B
Nix
{ config, lib, pkgs, user, ... }: {
|
|
imports = [ ./graphical.nix ];
|
|
my.system.boot.enable = true;
|
|
networking.networkmanager.enable = true;
|
|
users.users."${user.name}".extraGroups = [ "networkmanager" ];
|
|
}
|