nix/nixos/users.nix

18 lines
383 B
Nix
Raw Normal View History

2021-10-13 00:47:43 +02:00
{pkgs, config, ... }:
{
users.groups.genofire = {
gid = 1021;
};
users.users.genofire = {
uid = 1021;
home = "/home/genofire";
group = "genofire";
extraGroups = ["wheel"];
isNormalUser = true;
useDefaultShell = true;
openssh.authorizedKeys.keys = [
2022-07-23 08:49:55 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIOr9wE3i1+Cl/06WOf0/6OjxsOnN7veV3LZcWgtHkcS genofire@fireYubi"
2021-10-13 00:47:43 +02:00
];
};
}