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

13 lines
401 B
Nix

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