1
0
Fork 0
puter/hosts/work/users.nix

14 lines
395 B
Nix
Raw Normal View History

2025-07-14 21:18:44 +02:00
{ config, inputs, ... }:
2025-04-01 19:12:52 +00:00
{
2025-07-14 21:18:44 +02:00
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
2025-04-01 19:12:52 +00:00
};
}