nix/nixos/users.nix

19 lines
409 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;
2023-03-20 22:59:54 +01:00
# shell = pkgs.nushell;
2021-10-13 00:47:43 +02:00
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
];
};
}