builder: fix config for installation

This commit is contained in:
2026-07-19 12:59:50 +02:00
parent 6c301d87fd
commit d89b8b51cc
2 changed files with 6 additions and 6 deletions
+6 -5
View File
@@ -6,6 +6,7 @@
config, config,
inputs, inputs,
outputs, outputs,
lib,
... ...
}: { }: {
imports = imports =
@@ -94,12 +95,12 @@
}; };
# optimize store by hardlinking store files # optimize store by hardlinking store files
nix.optimise.automatic = true; nix.optimise.automatic = lib.mkForce true;
nix.optimise.dates = ["03:15"]; nix.optimise.dates = lib.mkForce ["03:15"];
nix.gc.automatic = true; nix.gc.automatic = lib.mkForce true;
nix.gc.dates = "daily"; nix.gc.dates = lib.mkForce "daily";
nix.gc.options = "--delete-old"; nix.gc.options = lib.mkForce "--delete-old";
# nix.settings.keep-derivations = false; # nix.settings.keep-derivations = false;
# nix.settings.keep-outputs = true; # nix.settings.keep-outputs = true;
-1
View File
@@ -14,7 +14,6 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
# Emulated systems used as alternative to cross-compiling # Emulated systems used as alternative to cross-compiling
boot.binfmt.emulatedSystems = ["aarch64-linux"]; boot.binfmt.emulatedSystems = ["aarch64-linux"];