summaryrefslogtreecommitdiff
path: root/hm/soft/media.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-02-03 22:58:50 +0100
committeradikro <adikro@disroot.org>2026-02-03 22:58:50 +0100
commiteb95abfc230dc239122f1e89e90cd9a998491a2f (patch)
tree9d60efacf83b97059f6300e360be2248f8e9c57e /hm/soft/media.nix
parente5036417abe5d3597792f869e2831decd50eba5d (diff)
...
Diffstat (limited to 'hm/soft/media.nix')
-rw-r--r--hm/soft/media.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/hm/soft/media.nix b/hm/soft/media.nix
index 3ea4dfa..8dcd6de 100644
--- a/hm/soft/media.nix
+++ b/hm/soft/media.nix
@@ -1,14 +1,14 @@
-{ config, lib, pkgs, ... }:
-let
- cfg = config.hm.soft.media;
-in
{
+ config,
+ lib,
+ pkgs,
+ ...
+}: let
+ cfg = config.hm.soft.media;
+in {
options.hm.soft.media.enable = lib.mkEnableOption "media cli tools";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
- krita
- gimp
- zathura
pinta
ffmpeg
imagemagick
@@ -16,4 +16,3 @@ in
];
};
}
-