sops debugging

This commit is contained in:
2026-03-04 14:34:23 +01:00
parent c1457a7496
commit 188a0950c1

View File

@@ -1,13 +1,9 @@
{ ... }: {
flake.homeModules.base-usr-ssh-all = { config, ... }: {
sops.secrets."users.mo.intern.public" = {
path = "/home/mo/.ssh/intern.pub";
};
sops.secrets."users.mo.extern.private" = {
path = "/home/mo/.ssh/extern";
};
sops.secrets."users/mo/intern/public" = {};
sops.secrets."users/mo/extern/private" = {};
home.file.".intern.pub".source = config.sops.secrets."users.mo.intern.public".path;
home.file.".extern".source = config.sops.secrets."users.mo.extern.private".path;
home.file.".intern.pub".source = config.sops.secrets."users/mo/intern/public".path;
home.file.".extern".source = config.sops.secrets."users/mo/extern/private".path;
};
}