nix-dotfiles/home/programs/ssh/default.nix

15 lines
226 B
Nix
Raw Normal View History

{ config, ... }:
{
imports = [
./home.nix
./other.nix
./pvv.nix
];
2024-07-08 15:02:54 +02:00
sops.secrets."ssh/secret-config" = {
mode = "0444";
};
2024-07-08 15:02:54 +02:00
programs.ssh.includes = [ config.sops.secrets."ssh/secret-config".path ];
}