From d9a6b64d28a358b00cd9edf370ea6417bae37e59 Mon Sep 17 00:00:00 2001 From: NullBite Date: Wed, 8 Jan 2025 16:55:20 -0500 Subject: [PATCH] system/pc: re-enable QEMU binfmt it seems like the relevant issues have been fixed: - https://github.com/NixOS/nixpkgs/issues/221056 (compilation time) - https://github.com/NixOS/nixpkgs/issues/160300 (chroot not working) --- system/profile/pc.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/system/profile/pc.nix b/system/profile/pc.nix index eb09286..4b7d8eb 100644 --- a/system/profile/pc.nix +++ b/system/profile/pc.nix @@ -14,9 +14,7 @@ in config = lib.mkIf cfg.enable { nixfiles.profile.base.enable = lib.mkDefault true; - # disabling this for now; it doesn't work in chroot yet (the only reason i - # want it) and it takes forever to compile. - # nixfiles.binfmt.enable = lib.mkDefault true; + nixfiles.binfmt.enable = lib.mkDefault true; # networking.hostName = "nixos"; # Define your hostname. # Pick only one of the below networking options.