all repos — nixfiles @ e096da8828f6ab6b5dc8e978c587cc4b54f55a64

System and user configuration, managed by nix and home-manager

system/settings/configuration/user.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ ... }:
{
  users.users.alin = {
    description = "Alin";
    isNormalUser = true;
    extraGroups = [
      "audio"
      "wheel"
      "video"
    ];
    initialPassword = "password";
    home = "/home/alin";
    uid = 1000;
    openssh.authorizedKeys.keys = [
      "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJVREjPey2TOIPzfYJoG9yIR4Rui7tNJK2QIKa+pbgsyXg31hhPIw37LRRIic+l53mW8eahHxX3Y1IeTjcMw8IU= alan@secretive.marvin"
    ];
  };
}