fix: Don't enable gimp in macos
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-12-02 12:39:28 +05:30
parent 25db631be3
commit 0e8d262b4a

View File

@@ -1,3 +1,8 @@
{pkgs, ...}: { {
home.packages = with pkgs; [gimp]; pkgs,
device,
lib,
...
}: {
home.packages = with pkgs; lib.optionals (device.is "ryu") [gimp];
} }