Add a config for the disc recovery machine.

This commit is contained in:
Tom Alexander
2025-10-25 15:00:14 -04:00
parent 2f05b9e600
commit 24b089a313
21 changed files with 1373 additions and 26 deletions

View File

@@ -54,23 +54,17 @@ in
nixpkgs.overlays = [
(final: prev: {
my_git = (
pkgs.buildEnv {
name = prev.git.name;
version = prev.git.version;
pkgs.symlinkJoin {
name = final.git.name;
version = final.git.version;
paths =
(builtins.map (git_wrapped prev.git) [
(builtins.map (git_wrapped final.git) [
"git"
])
++ [
prev.git
final.git
];
extraOutputsToInstall = [
"man"
"doc"
"info"
];
nativeBuildInputs = [ final.makeWrapper ];
ignoreCollisions = true;
}
);
})
@@ -79,7 +73,7 @@ in
(lib.mkIf (!config.me.graphical) {
nixpkgs.overlays = [
(final: prev: {
my_git = prev.git;
my_git = final.git;
})
];
})