1
0
Fork 0
puter/hosts/work/users.nix
2025-07-14 21:18:44 +02:00

13 lines
395 B
Nix

{ config, inputs, ... }:
{
age.secrets.user-lukas.file = inputs.self + /secrets/users/helvetica.age;
users.users.lukas = {
description = "Lukas Wurzinger";
uid = 1000;
isNormalUser = true;
hashedPasswordFile = config.age.secrets.user-lukas.path;
openssh.authorizedKeys.keys = builtins.attrValues config.pubkeys.users;
extraGroups = [ "wheel" ]; # TODO remove
};
}