From 0e8d262b4ad2984c1280762843b7a75a8ece18ae Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 2 Dec 2025 12:39:28 +0530 Subject: [PATCH] fix: Don't enable gimp in macos --- home/apps/gimp.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/home/apps/gimp.nix b/home/apps/gimp.nix index 75d4470f..f665f888 100644 --- a/home/apps/gimp.nix +++ b/home/apps/gimp.nix @@ -1,3 +1,8 @@ -{pkgs, ...}: { - home.packages = with pkgs; [gimp]; +{ + pkgs, + device, + lib, + ... +}: { + home.packages = with pkgs; lib.optionals (device.is "ryu") [gimp]; }