fix: don't add local cache to builder

This commit is contained in:
matt1432 2024-05-29 21:18:50 -04:00
parent 7893d37df5
commit 6be9d173b6
8 changed files with 61 additions and 51 deletions
common/home

View file

@ -2,9 +2,10 @@
programs.direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv = {
enable = true;
package = pkgs.nix-direnv-flakes;
package = pkgs.nix-direnv;
};
};
}

View file

@ -27,5 +27,14 @@
usbutils
wget
zip
]);
])
++ [
# This could help as well: nix derivation show -r /run/current-system
(pkgs.writeShellApplication {
name = "listDerivs";
text = ''
nix-store --query --requisites /run/current-system | cut -d- -f2- | sort -u
'';
})
];
}