10 lines
184 B
Nix
10 lines
184 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./graphical.nix
|
||
|
];
|
||
|
|
||
|
networking.networkmanager.enable = true;
|
||
|
users.users.james.extraGroups = [ "networkmanager" ];
|
||
|
}
|