Thunar: extract thunar config

This commit is contained in:
Leonardo Eugênio 2023-01-24 09:39:19 -03:00
parent 67c087897a
commit 49e054e282
2 changed files with 13 additions and 6 deletions

12
user/thunar.nix Normal file
View file

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