add gimp
This commit is contained in:
parent
b632c0c3af
commit
5455230930
@ -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;
|
||||||
|
17
modules/home/programs/graphical/gimp/default.nix
Executable file
17
modules/home/programs/graphical/gimp/default.nix
Executable 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user