This commit is contained in:
2026-03-04 13:48:03 +01:00
parent 8a7d36908d
commit b3062a56ee
2 changed files with 7 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
imports = with config.flake.homeModules; [
base-usr-git-all
base-usr-zsh-all
base-usr-ssh-all
];
};
}

View File

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