Files
infra/lib/users/christian/default.nix
2023-09-20 18:22:52 +02:00

11 lines
181 B
Nix

{pkgs, ...}: {
config = {
users.users.christian = {
packages = with pkgs; [ vim git ];
openssh.authorizedKeys.keyFiles = [ ./pubkey ./pubkey2 ];
};
};
}