2025-01-18 20:34:22 +01:00
|
|
|
{ config, pkgs, ... }:
|
2025-01-10 23:38:56 +01:00
|
|
|
|
|
|
|
{
|
2025-01-18 20:34:22 +01:00
|
|
|
sops.secrets.user_password = {
|
|
|
|
sopsFile = ../../../secrets/user_password.yaml;
|
|
|
|
neededForUsers = true;
|
|
|
|
};
|
|
|
|
|
2025-01-10 23:38:56 +01:00
|
|
|
users.users.caem = {
|
|
|
|
isNormalUser = true;
|
|
|
|
shell = pkgs.zsh;
|
2025-01-18 20:34:22 +01:00
|
|
|
hashedPasswordFile = config.sops.secrets.user_password.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
|
|
|
}
|