1
0
Fork 0
puter/profiles/productivity/gimp.nix
2025-05-18 01:08:10 +02:00

16 lines
195 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.productivity;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.gimp3-with-plugins
];
};
}