pinwheel/manatee/backwards: Adjust for updated nixpkgs

This commit is contained in:
Alexander Heldt
2026-01-03 16:41:41 +01:00
parent 6a58eb660b
commit e788efc4ff
17 changed files with 67 additions and 15 deletions

View File

@@ -8,7 +8,7 @@
};
environment.systemPackages = [
inputs.agenix.packages."${pkgs.system}".default
inputs.agenix.packages."${pkgs.stdenv.hostPlatform.system}".default
];
};
}

View File

@@ -23,7 +23,7 @@ in
{ path = ./gitconfig; }
];
extraConfig = {
settings = {
rerere.enable = true;
};
};

View File

@@ -27,6 +27,19 @@ in
hostname = "git.ppp.pm";
identityFile = "/home/alex/.ssh/alex.manatee-git.ppp.pm";
};
"*" = {
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
};
};
};