4e9b865e33
This was not being used consistently.
7 lines
198 B
Nix
7 lines
198 B
Nix
{ config, lib, pkgs, ... }: {
|
|
imports = [ ./graphical.nix ];
|
|
this.system.boot.enable = true;
|
|
networking.networkmanager.enable = true;
|
|
users.users.james.extraGroups = [ "networkmanager" ];
|
|
}
|