mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
Complete overhaul
This commit is contained in:
commit
d30d11566d
38 changed files with 1373 additions and 0 deletions
14
users/seb/default.nix
Normal file
14
users/seb/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{config, ...}: {
|
||||
imports = [../default.nix];
|
||||
|
||||
sops.secrets."password/seb".neededForUsers = true;
|
||||
|
||||
users.users.seb = {
|
||||
isNormalUser = true;
|
||||
description = "Sebastian Stork";
|
||||
hashedPasswordFile = config.sops.secrets."password/seb".path;
|
||||
extraGroups = ["wheel" "networkmanager" "libvirtd"];
|
||||
};
|
||||
|
||||
home-manager.users.seb = import ./home.nix;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue