2024-10-21 16:36:20 +02:00
|
|
|
{ pkgs, materusArg, config, ... }:
|
|
|
|
{
|
|
|
|
|
|
|
|
users.users.materus = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [
|
|
|
|
"audio"
|
|
|
|
"video"
|
|
|
|
"render"
|
|
|
|
"pipewire"
|
|
|
|
"wheel"
|
|
|
|
"networkmanager"
|
|
|
|
"input"
|
|
|
|
"kvm"
|
|
|
|
"libvirt-qemu"
|
|
|
|
"libvirt"
|
|
|
|
"libvirtd"
|
|
|
|
"podman"
|
|
|
|
"scanner"
|
|
|
|
"lp"
|
|
|
|
];
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
description = "Mateusz Słodkowicz";
|
|
|
|
openssh.authorizedKeys.keyFiles = [ ("${materusArg.cfg.path}" + "/extraFiles/keys/ssh/materus.pub") ];
|
2024-11-15 18:01:13 +01:00
|
|
|
#hashedPasswordFile = config.sops.secrets."users/materus".path;
|
2024-10-21 16:36:20 +02:00
|
|
|
};
|
|
|
|
}
|