mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
c6c053585c
Former-commit-id: 5e98256a82
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" ];
|
|
};
|
|
};
|
|
}
|