diff --git a/hosts/exodus/default.nix b/hosts/exodus/default.nix index c3d0745..3d5458d 100644 --- a/hosts/exodus/default.nix +++ b/hosts/exodus/default.nix @@ -1,15 +1,21 @@ -{ ... }: +{ config, ... }: { - imports = [ - ./hardware-configuration.nix - ]; + imports = [ ./hardware-configuration.nix ]; - boot.loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + binfmt.emulatedSystems = [ + "i686-linux" + "aarch64-linux" + ]; }; + nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; + networking.hostName = "exodus"; greg = { home = true;