1
Fork 0
nixos-system-config/modules/nixos/user/caem.nix

20 lines
369 B
Nix
Raw Normal View History

2025-01-20 00:29:00 +01:00
{ config, pkgs, inputs, ... }:
2025-01-10 23:38:56 +01:00
{
2025-01-20 00:29:00 +01:00
sops.secrets.upasswd = {
neededForUsers = true;
sopsFile = inputs.secrets.paths.upasswd;
};
2025-01-10 23:38:56 +01:00
users.users.caem = {
isNormalUser = true;
shell = pkgs.zsh;
2025-01-19 23:06:17 +01:00
hashedPasswordFile = config.sops.secrets.upasswd.path;
2025-01-10 23:38:56 +01:00
extraGroups = [
"wheel"
];
};
2025-01-11 02:00:28 +01:00
home-manager.users.caem = import ../../home/caem;
2025-01-10 23:38:56 +01:00
}