mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
14 lines
385 B
Nix
14 lines
385 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;
|
|
}
|