summaryrefslogtreecommitdiffstats
path: root/users/jon.nix
blob: da8c84e8a05381f6653502f747234b2355a220eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs, pkgs, ... }:
{
  users.users.jon = {
    isNormalUser = true;
    description = "jon";
    extraGroups = [
      "networkmanager"
      "wheel"
      "video"
      ];
    packages = with pkgs; [];
  };

}