This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/user/thunar.nix

13 lines
250 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
_thunar-terminal
(xfce.thunar.override {
thunarPlugins = with pkgs.xfce; [ thunar-volman thunar-archive-plugin ];
})
];
xdg.configFile = {
"Thunar/".source = ./thunar;
};
}