fully implemented SOPS

This commit is contained in:
kenji
2025-12-24 16:24:38 -06:00
parent 8b66ff719b
commit be4b66fdd2
2 changed files with 34 additions and 1 deletions
+9 -1
View File
@@ -1,8 +1,16 @@
{pkgs, ...}: {
{
pkgs,
myConfig,
...
}: {
security.pam.services.greetd.enableGnomeKeyring = true;
environment.systemPackages = with pkgs; [
sops
age
ssh-to-age
];
sops = {
defaultSopsFile = ../secrets/secrets.yaml;
age.keyFile = "/home/${myConfig.nixos.username}/.config/sops/age/keys.txt";
};
}