This commit is contained in:
caem 2025-01-18 20:34:22 +01:00
parent 42a591bd37
commit fc03bb0b93
Signed by: caem
GPG key ID: 69A830D03203405F
5 changed files with 14 additions and 6 deletions

View file

@ -1,9 +1,15 @@
{ pkgs, ... }:
{ 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"
];