mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
14 lines
284 B
Nix
14 lines
284 B
Nix
{ config, ... }:
|
|
{
|
|
sops.secrets.seb-password.neededForUsers = true;
|
|
|
|
users.users.seb = {
|
|
isNormalUser = true;
|
|
description = "Sebastian Stork";
|
|
hashedPasswordFile = config.sops.secrets.seb-password.path;
|
|
extraGroups = [
|
|
"wheel"
|
|
"libvirtd"
|
|
];
|
|
};
|
|
}
|