This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-12-02 20:59:20 +01:00
parent f828268b14
commit a82660b049
2 changed files with 10 additions and 1 deletions

9
home-modules/gimp.nix Executable file
View File

@@ -0,0 +1,9 @@
{ pkgs, lib, host, ... }:
{
home.packages = with pkgs; [
(gimp-with-plugins.override {
plugins = with gimpPlugins; [ bimp ];
})
];
}