Files
nix-fleet/modules/base/usr/ssh-all.nix
2026-03-04 14:45:21 +01:00

11 lines
309 B
Nix

{ config, ... }: {
flake.homeModules.base-usr-ssh-all = { config, ... }: {
sops.secrets."users/mo/intern/public" = {
path = "${config.home.homeDirectory}/.ssh/intern.pub";
};
sops.secrets."users/mo/extern/private" = {
path = "${config.home.homeDirectory}/.ssh/extern";
};
};
}