mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
20 lines
393 B
Nix
20 lines
393 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;
|
|
}
|