Files
infra/lib/users/christian/default.nix

11 lines
181 B
Nix
Raw Normal View History

{pkgs, ...}: {
config = {
users.users.christian = {
packages = with pkgs; [ vim git ];
2023-09-20 18:22:52 +02:00
openssh.authorizedKeys.keyFiles = [ ./pubkey ./pubkey2 ];
};
};
2023-09-20 18:22:52 +02:00
}