From deed2aab8eabb1667586f9b16a8770e837295fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Thu, 23 Oct 2025 10:46:05 +0800 Subject: [PATCH] add installer for macbook-pro-2009 --- default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/default.nix b/default.nix index 7deece54..2c6222bd 100644 --- a/default.nix +++ b/default.nix @@ -12,6 +12,16 @@ system = "x86_64-linux"; modules = [./nix/configurations/installer.nix]; }; + # Specialized with patches for the GPU + installer-macbook-pro-2009 = { + system = "x86_64-linux"; + modules = [ + ./nix/configurations/installer.nix + ./nix/nixosModules/extra/macbook-pro-radeon.nix + ./nix/nixosModules/extra/macbook-swap-cmd-opt.nix + ./nix/nixosModules/extra/macbook-swap-fn-ctrl.nix + ]; + }; }; packages = import ./nix/packages {inherit sources;};