nautilus: enable the A/V pane

This commit is contained in:
Colin 2023-12-15 02:57:25 +00:00
parent 5fbf2166f1
commit 136ddda055
2 changed files with 13 additions and 0 deletions

View File

@ -51,6 +51,7 @@
./mopidy.nix
./mpv.nix
./msmtp.nix
./nautilus.nix
./neovim.nix
./newsflash.nix
./nheko.nix

View File

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
sane.programs."gnome.nautilus" = {
package = pkgs.gnome.nautilus.overrideAttrs (orig: {
# enable the "Audio and Video Properties" pane. see: <https://nixos.wiki/wiki/Nautilus>
buildInputs = orig.buildInputs ++ (with pkgs.gst_all_1; [
gst-plugins-good
gst-plugins-bad
]);
});
};
}