Create gimp.nix module

This commit is contained in:
2026-03-27 10:03:53 +01:00
parent 82a77971b0
commit 8b9bb7ae90

7
systems/modules/gimp.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... } :
{
environment.systemPackages = with pkgs; [
gimp
];
}