summaryrefslogtreecommitdiff
path: root/modules/common/users.nix
blob: ba1a89bb917667b861ec33ba31fef2c1a0675fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, ... }:
with lib;
let
  home = "/home/${my.username}";
in
{
  imports = [
    (mkAliasOptionModule [ "my" ] [
      "users"
      "users"
      my.username
    ])
  ];

  ark.directories = [ home ];

  users = {
    mutableUsers = false;

    users = {
      root.hashedPassword = "@HASHED_PASSWORD@";

      ${my.username} = {
        isNormalUser = true;
        uid = 1000;
        description = my.fullname;
        inherit home;
        inherit (my) hashedPassword;
        openssh.authorizedKeys.keys = [ my.ssh.key ];
        extraGroups = [ "wheel" ];
      };
    };
  };
}