nixfiles/users/notgne2.nix
2022-10-03 17:08:32 -07:00

20 lines
349 B
Nix

{
config,
pkgs,
lib,
...
}: {
nix.trustedUsers = ["notgne2"];
users.users.notgne2 = {
isNormalUser = true;
shell = pkgs.fish;
home = "/home/notgne2";
description = "notgne2";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPIBwL8/TuE5GT1708sR3rVc1C1g2DmoSf35kjXKKLcr yubi"
];
};
}