mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
15 lines
312 B
Nix
15 lines
312 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
sops.secrets.seb-password.neededForUsers = true;
|
|
|
|
users.users.seb = {
|
|
isNormalUser = true;
|
|
description = "Sebastian Stork";
|
|
hashedPasswordFile = config.sops.secrets.seb-password.path;
|
|
shell = pkgs.zsh;
|
|
extraGroups = [
|
|
"wheel"
|
|
"libvirtd"
|
|
];
|
|
};
|
|
}
|