Files
dotfiles/home/apps/gimp.nix
uttarayan21 0e8d262b4a
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
fix: Don't enable gimp in macos
2025-12-02 12:43:33 +05:30

9 lines
109 B
Nix

{
pkgs,
device,
lib,
...
}: {
home.packages = with pkgs; lib.optionals (device.is "ryu") [gimp];
}