mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
keep-output/derivations
This commit is contained in:
parent
34eab4b2e7
commit
0352672d69
4 changed files with 22 additions and 17 deletions
|
|
@ -13,6 +13,8 @@ _: {
|
|||
lib.mkIf config.localModules.remoteBuild.enable {
|
||||
nix = {
|
||||
settings = {
|
||||
keep-outputs = false;
|
||||
keep-derivations = false;
|
||||
builders-use-substitutes = true;
|
||||
max-jobs = 0;
|
||||
};
|
||||
|
|
@ -53,7 +55,11 @@ _: {
|
|||
};
|
||||
};
|
||||
|
||||
nix.settings.trusted-users = ["builder"];
|
||||
nix.settings = {
|
||||
trusted-users = ["builder"];
|
||||
keep-outputs = true;
|
||||
keep-derivations = true;
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,8 +37,6 @@ in {
|
|||
warn-dirty = false;
|
||||
#ignore global registry
|
||||
flake-registry = builtins.toFile "empty-flake-registry.json" ''{"flakes":[],"version":2}'';
|
||||
keep-outputs = true;
|
||||
keep-derivations = true;
|
||||
#become stable faster stupid
|
||||
use-xdg-base-directories = true;
|
||||
trusted-users = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue