From 32ebd6812f176d0afdb45e168394c6f4d62fa03e Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Wed, 28 Aug 2024 13:35:44 +0200 Subject: [PATCH] feat: add mpv, mediainfo and exiftool --- users/gandalf/modules/dconf.nix | 2 +- users/gandalf/modules/gui/programs/default.nix | 1 + users/gandalf/modules/yazi.nix | 7 ++++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/users/gandalf/modules/dconf.nix b/users/gandalf/modules/dconf.nix index f052f87..756c353 100644 --- a/users/gandalf/modules/dconf.nix +++ b/users/gandalf/modules/dconf.nix @@ -6,7 +6,7 @@ uris = [ "qemu:///system" ]; }; "org/gnome/desktop/interface" = { - "color-scheme" = "prefer-dark"; + "color-scheme" = "prefer-light"; }; }; diff --git a/users/gandalf/modules/gui/programs/default.nix b/users/gandalf/modules/gui/programs/default.nix index 2c958a2..2fb4bfd 100644 --- a/users/gandalf/modules/gui/programs/default.nix +++ b/users/gandalf/modules/gui/programs/default.nix @@ -29,6 +29,7 @@ gnome.gnome-font-viewer # program that can preview fonts and create thumbnails for fonts pppdf feh # a light-weight image viewer + mpv vlc # cross-platform media player and streaming server zathura # a highly customizable and functional pdf viewer neovide # a simple graphical user interface for neovim diff --git a/users/gandalf/modules/yazi.nix b/users/gandalf/modules/yazi.nix index 5cf9b78..751e977 100644 --- a/users/gandalf/modules/yazi.nix +++ b/users/gandalf/modules/yazi.nix @@ -1,4 +1,9 @@ -{ ... }: { +{ pkgs, ... }: { + + home.packages = with pkgs; [ + mediainfo + exiftool + ]; programs.yazi = { enable = true;