about summary refs log tree commit diff stats
path: root/system/users/default.nix
blob: 2c962c2607d4a9ae0c999235578af91e1b3bb036 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  config,
  pkgs,
  ...
}: {
  users = {
    mutableUsers = false;
    users.soispha = {
      isNormalUser = true;
      home = "/srv/home/soispha";
      shell = pkgs.zsh;
      initialHashedPassword = "$y$jFT$ONrCqZIJKB7engmfA4orD/$0GO58/wV5wrYWj0cyONhyujZPjFmbT0XKtx2AvXLG0B";
      extraGroups = ["wheel"];
      uid = 1000;
    };
  };
}