mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
10 lines
347 B
Nix
10 lines
347 B
Nix
{ ... }: {
|
|
flake.homeModules.base-usr-ssh-all = { config, ... }: {
|
|
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;
|
|
};
|
|
}
|