aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/compile.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2026-09-23 08:09:45 +0200
committerKarel Kočí <cynerd@email.cz>2026-09-23 08:09:45 +0200
commitc42de3037ec406fa834c6c1756a6f0b70dcdd38f (patch)
tree0d195492fc3f24c9742567f5bff8c157ec72baa0 /nixos/modules/compile.nix
parentb0af9c76e1687f2afad15ba7a0de1d24331868c8 (diff)
downloadnixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.tar.gz
nixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.tar.bz2
nixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.zip
treewise: cleanup and general updateHEADmaster
Diffstat (limited to 'nixos/modules/compile.nix')
-rw-r--r--nixos/modules/compile.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/compile.nix b/nixos/modules/compile.nix
index 3c90345..332a095 100644
--- a/nixos/modules/compile.nix
+++ b/nixos/modules/compile.nix
@@ -20,7 +20,10 @@ in {
cores = 0;
};
- boot.binfmt.emulatedSystems = ["armv7l-linux" "aarch64-linux" "riscv32-linux"];
+ boot.binfmt = {
+ emulatedSystems = ["armv7l-linux" "aarch64-linux" "riscv32-linux"];
+ preferStaticEmulators = true;
+ };
environment.systemPackages = with pkgs; [
# Tools
@@ -28,9 +31,6 @@ in {
bash
#uroot
qemu
-
- # Python
- python3Packages.pip
];
};
}