nixos/home/secrets/default.nix
2024-03-15 21:26:34 +01:00

13 lines
319 B
Nix

{ pkgs, config, homeage, ... }: {
imports = [ homeage.homeManagerModules.homeage ];
homeage = {
identityPaths = [ "~/nixy.key" ];
installationType = "activation";
file."hadisecretkey" = {
source = ./sshconfig.age;
symlinks = [ "${config.home.homeDirectory}/.ssh/sshconfig" ];
};
};
}