dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (198B)


      1 { lib, pkgs, ... }:
      2 {
      3   boot.binfmt = {
      4     emulatedSystems = lib.remove pkgs.stdenv.hostPlatform.system [
      5       "x86_64-linux"
      6       "aarch64-linux"
      7     ];
      8     preferStaticEmulators = true;
      9   };
     10 }