nixos-combined-flake/modules/home-manager/desktop/thunar/default.nix

11 lines
127 B
Nix

{
pkgs,
config,
lib,
...
}:
with lib;
mkIf config.desktop.enable {
home.packages = with pkgs; [xfce.thunar];
}