mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-22 00:21:34 +01:00
14 lines
382 B
Nix
14 lines
382 B
Nix
{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 = ./home.nix;
|
|
}
|