1
Fork 0
nixos-system-config/modules/nixos/user/caem.nix
2025-01-18 20:34:22 +01:00

19 lines
380 B
Nix

{ config, pkgs, ... }:
{
sops.secrets.user_password = {
sopsFile = ../../../secrets/user_password.yaml;
neededForUsers = true;
};
users.users.caem = {
isNormalUser = true;
shell = pkgs.zsh;
hashedPasswordFile = config.sops.secrets.user_password.path;
extraGroups = [
"wheel"
];
};
home-manager.users.caem = import ../../home/caem;
}