nixfiles/users/notgne2.nix
2022-02-13 11:05:53 -07:00

17 lines
344 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"
];
};
}