dotfiles/modules/programs/thunar.nix

33 lines
480 B
Nix
Raw Normal View History

2022-07-15 13:11:54 +02:00
{ config
, lib
, pkgs
, ...
}:
with lib;
let
cfg = config.my.programs.thunar;
in
{
options.my.programs.thunar = {
enable = mkOption {
default = false;
type = types.bool;
example = true;
};
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
xfce.exo
xfce.thunar
xfce.tumbler
xfce.xfconf
];
services.gvfs = {
enable = true;
2022-09-27 18:02:09 +02:00
package = lib.mkForce pkgs.gnome.gvfs;
2022-07-15 13:11:54 +02:00
};
};
}