From ea3a2d46f31940d5c83684be379b4f55a6a2582d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Tue, 19 Apr 2022 09:31:35 +0100 Subject: [PATCH] Add optimizations to installer --- config/installer.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/installer.nix b/config/installer.nix index 5c4a0d55..3ffa2d4d 100644 --- a/config/installer.nix +++ b/config/installer.nix @@ -6,4 +6,10 @@ "fd0d:a262:1fa6:e621:6ec2:1e4e:ce7f:d2af/64" ]; boot.supportedFilesystems = [ "zfs" ]; + # Oldest system I have is skylake-based + nixpkgs.localSystem = { + gcc.arch = "skylake"; + gcc.tune = "skylake"; + system = "x86_64-linux"; + }; }