[fugitive] Add config for an impermanent system

This commit is contained in:
ctsk
2023-08-20 08:48:31 +02:00
commit 8bc595175d
7 changed files with 193 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{pkgs, ...}: {
config = {
users.users.christian = {
packages = with pkgs; [ vim git ];
openssh.authorizedKeys.keyFiles = [ ./pubkey ];
};
};
}