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