From d0dec02c538a8db828d90cd6e94471119ad1c079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Gro=C3=9Fmann?= Date: Wed, 22 Nov 2023 23:38:38 +0100 Subject: [PATCH] feat: enable mips emulation --- modules/config/system.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/system.nix b/modules/config/system.nix index 10c7402..23b4931 100644 --- a/modules/config/system.nix +++ b/modules/config/system.nix @@ -60,7 +60,7 @@ nvd ]; - boot.binfmt.emulatedSystems = ["aarch64-linux"]; + boot.binfmt.emulatedSystems = ["aarch64-linux" "mips-linux"]; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";