mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
13 lines
319 B
Nix
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" ];
|
|
};
|
|
};
|
|
}
|