init
This commit is contained in:
21
modules/core/thunar.nix
Normal file
21
modules/core/thunar.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ host
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
inherit (import ../../hosts/${host}/variables.nix) thunarEnable;
|
||||
in
|
||||
{
|
||||
programs = {
|
||||
thunar = {
|
||||
enable = thunarEnable;
|
||||
plugins = with pkgs.xfce; [
|
||||
thunar-archive-plugin
|
||||
thunar-volman
|
||||
];
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
ffmpegthumbnailer # Need For Video / Image Preview
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user