This commit is contained in:
Evan Reichard 2025-04-20 21:16:56 -04:00
parent b632c0c3af
commit 5455230930
2 changed files with 18 additions and 0 deletions

View File

@ -26,6 +26,7 @@ in
graphical = { graphical = {
wms.hyprland = enabled; wms.hyprland = enabled;
ghostty = enabled; ghostty = enabled;
gimp = enabled;
ghidra = enabled; ghidra = enabled;
browsers.firefox = { browsers.firefox = {
enable = true; enable = true;

View File

@ -0,0 +1,17 @@
{ pkgs, lib, config, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.programs.graphical.gimp;
in
{
options.${namespace}.programs.graphical.gimp = {
enable = mkEnableOption "GIMP";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
gimp-with-plugins
];
};
}