added ssh config for local git pushes

This commit is contained in:
Leyla Becker 2025-03-14 20:21:18 -05:00
parent 44d6b4827d
commit da78b208cd
4 changed files with 42 additions and 5 deletions

View file

@ -114,7 +114,12 @@
nixpkgs.lib.attrsets.mapAttrsToList (hostname: system: (
nixpkgs.lib.attrsets.mapAttrs' (user: _: {
name = "${user}@${hostname}";
value = mkHome user hostname system.pkgs.hostPlatform.system system.config;
value = mkHome {
user = user;
host = hostname;
system = system.pkgs.hostPlatform.system;
osConfig = system.config;
};
})
system.config.home-manager.users
))