flake/nixos/users/guanranwang.nix
2023-09-19 08:17:43 +08:00

13 lines
No EOL
392 B
Nix

{ pkgs, ... }:
{
users.users.guanranwang = {
isNormalUser = true;
description = "Guanran Wang";
extraGroups = [ "wheel" "networkmanager" "tss" ]; # tss = access to tpm devices
#passwordFile = config.sops.secrets.password.path;
hashedPassword = "$y$j9T$D7kBBBGwxw1XmPApAHIsx/$hcB64v3/kvPB7nIM9wXFiaSSBfhSp9k/JQ4R9G3guk6";
shell = pkgs.fish;
packages = [];
};
}