about summary refs log tree commit diff
path: root/nix/hosts/nixos/user.nix
blob: dbd805791ca931541fffc916c57f6f2671229dd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ ... }:
{
  users.users.fcuny = {
    uid = 1000;
    isNormalUser = true;
    extraGroups = [
      "wheel"
      "dialout" # Enable access to serial devices
    ];
    openssh.authorizedKeys.keys = [
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBkozy+X96u5ciX766bJ/AyQ3xm1tXZTIr5+4PVFZFi"
    ];
  };
}