about summary refs log tree commit diff
path: root/nix/hosts/nixos/user.nix
blob: b358d3ecbe490bedf0b57beb61988464dda22e3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ ... }:
{
  users.users.fcuny = {
    uid = 1000;
    isNormalUser = true;
    extraGroups =
      [
        "wheel"
        "dialout" # Enable access to serial devices
      ];
  };
}