tidy up homeage config

This commit is contained in:
Pim Kunis 2023-10-16 11:21:40 +02:00
parent bbc6b95b3a
commit 7053ed60e1
3 changed files with 21 additions and 21 deletions

View file

@ -1,4 +1,4 @@
{ lib, ...}:
{ config, lib, ...}:
{
config = {
@ -40,5 +40,15 @@
};
};
};
homeage.file."sue_ed25519" = {
source = ../../secrets/sue_ed25519.age;
symlinks = [ "${config.home.homeDirectory}/.ssh/sue_ed25519" ];
};
homeage.file."sue_azure_rsa" = {
source = ../../secrets/sue_azure_rsa.age;
symlinks = [ "${config.home.homeDirectory}/.ssh/sue_azure_rsa" ];
};
};
}