programs: add sops

This commit is contained in:
DashieTM 2024-05-14 20:38:33 +02:00
parent ac51db1c7e
commit fcf4fc3064
10 changed files with 151 additions and 29 deletions

View file

@ -0,0 +1,10 @@
{ config, ... }: {
home.file.".ssh/config".text = ''
Host github.com
IdentityFile ${config.sops.secrets.hub.path}
Host gitlab.com
IdentityFile ${config.sops.secrets.lab.path}
Host dashie.org
IdentityFile ${config.sops.secrets.dashie.path}
'';
}