diff --git a/homeConfigurations/wsl-apps/default.nix b/homeConfigurations/wsl-apps/default.nix index 085760f..e1c2370 100755 --- a/homeConfigurations/wsl-apps/default.nix +++ b/homeConfigurations/wsl-apps/default.nix @@ -3,6 +3,7 @@ }: { imports = [ + ./gimp.nix ./gramps.nix ./streamrip.nix ./yt-dlp.nix diff --git a/homeConfigurations/wsl-apps/gimp.nix b/homeConfigurations/wsl-apps/gimp.nix new file mode 100644 index 0000000..15447bc --- /dev/null +++ b/homeConfigurations/wsl-apps/gimp.nix @@ -0,0 +1,12 @@ +{ + config, + pkgs, + xlib, + inputs, + ... +}: +{ + home.packages = [ + pkgs.gimp + ]; +}