dotfiles/modules/programs/thunar.nix

27 lines
404 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
{
2022-10-15 20:00:09 +02:00
options.my.programs.thunar.enable = mkEnableOption "thunar";
2022-07-15 13:11:54 +02:00
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
};
};
}