Reorganize user configuration

This commit is contained in:
SebastianStork 2024-07-21 01:47:42 +02:00
parent 99fee4fddf
commit 14a285ce03
7 changed files with 61 additions and 52 deletions

View file

@ -1,20 +0,0 @@
{ 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;
}