mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
19 lines
443 B
Nix
19 lines
443 B
Nix
{config, ...}: {
|
|
imports = [../common.nix];
|
|
|
|
sops.secrets.seb-password.neededForUsers = true;
|
|
|
|
users.users.seb = {
|
|
isNormalUser = true;
|
|
description = "Sebastian Stork";
|
|
hashedPasswordFile = config.sops.secrets.seb-password.path;
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
"libvirtd"
|
|
"video"
|
|
];
|
|
};
|
|
|
|
home-manager.users.seb = ./home.nix;
|
|
}
|