2023-09-19 00:17:43 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-09-20 21:23:10 +00:00
|
|
|
users.users."guanranwang" = {
|
2023-09-19 00:17:43 +00:00
|
|
|
isNormalUser = true;
|
|
|
|
description = "Guanran Wang";
|
|
|
|
extraGroups = [ "wheel" "networkmanager" "tss" ]; # tss = access to tpm devices
|
2023-09-20 21:23:10 +00:00
|
|
|
#passwordFile = config.sops.secrets."user-password-guanranwang".path;
|
2023-09-19 00:17:43 +00:00
|
|
|
hashedPassword = "$y$j9T$D7kBBBGwxw1XmPApAHIsx/$hcB64v3/kvPB7nIM9wXFiaSSBfhSp9k/JQ4R9G3guk6";
|
|
|
|
shell = pkgs.fish;
|
|
|
|
packages = [];
|
|
|
|
};
|
|
|
|
}
|