nix-server/users/hackerncoder.nix

14 lines
261 B
Nix
Raw Permalink Normal View History

2024-09-19 12:40:19 +00:00
{ config, pkgs, inputs, ... }:
{
users.users.hackerncoder = {
openssh.authorizedKeys.keyFiles = [
../keys/ocean-princess.hetzner
];
shell = pkgs.bash;
isNormalUser = true;
extraGroups = [ "wheel" ];
hashedPassword = "*";
};
}