mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
11 lines
309 B
Nix
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";
|
|
};
|
|
};
|
|
}
|