This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/profiles/laptop.nix
James Patrick 4e9b865e33 de-pluralized systems -> system
This was not being used consistently.
2022-07-16 19:07:34 -04:00

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" ];
}