31 lines
546 B
Nix
31 lines
546 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf mkEnableOption;
|
|
cfg = config.nixos.programs.thunar;
|
|
in
|
|
{
|
|
options = {
|
|
nixos.programs.thunar.enable = mkEnableOption "Enables thunar file manager";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
};
|
|
programs.xfconf.enable = true;
|
|
services.tumbler.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
file-roller
|
|
];
|
|
};
|
|
}
|