1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../home/anna/user.nix
2024-01-30 14:00:26 +01:00

26 lines
498 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
{
users = {
users = {
anna = {
uid = 10001;
description = "Anna Boerger";
shell = pkgs.zsh;
isNormalUser = true;
hashedPasswordFile = config.age.secrets."users/anna/password".path;
extraGroups = [
"audio"
"video"
"networkmanager"
];
};
};
};
age.secrets."users/anna/password" = {
file = ../../secrets/users/anna/password.age;
};
}