mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 18:17:44 +00:00
19 lines
391 B
Nix
19 lines
391 B
Nix
{ config, lib, pkgs, ... }: let
|
|
inherit (lib) enabled merge mkIf;
|
|
in merge <| mkIf config.isDesktop {
|
|
programs.thunar = enabled {
|
|
plugins = [
|
|
pkgs.xfce.thunar-archive-plugin
|
|
pkgs.xfce.thunar-media-tags-plugin
|
|
pkgs.xfce.thunar-volman
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.ark
|
|
pkgs.ffmpegthumbnailer
|
|
pkgs.libgsf
|
|
|
|
pkgs.xfce.tumbler
|
|
];
|
|
}
|