Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

FIX: qemu firmware, firefox bin

+15 -1
+1 -1
noah-home.nix
··· 17 17 18 18 home.packages = with pkgs; [ 19 19 # main tool 20 - firefox-devedition 20 + firefox-devedition-bin 21 21 direnv 22 22 fish 23 23 tree
+14
packages.nix
··· 53 53 fishPlugins.fzf-fish 54 54 fzf 55 55 qemu 56 + qemu-user 57 + qemu-utils 58 + qemu_full 56 59 OVMF 57 60 #9p stuff 58 61 diod ··· 96 99 sqlite 97 100 libunwind 98 101 libglvnd 102 + libclang 103 + systemdLibs 99 104 ]; 100 105 }; 106 + 107 + # Run other bins in QEMU 108 + boot.binfmt.emulatedSystems = [ 109 + "aarch64-linux" 110 + "riscv64-linux" 111 + ]; 112 + # UEFI firmware support for QEMU 113 + systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ]; 114 + 101 115 102 116 103 117 # Logseq uses an ancient version of Electron, so we enable that