summaryrefslogtreecommitdiff
path: root/hm/soft/media.nix
diff options
context:
space:
mode:
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
];
};
}
-