Skip to content

Commit

Permalink
chore: Simplify thunar module
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Apr 3, 2024
1 parent 019603a commit 2048bc6
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions modules/thunar.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
{ pkgs, ... }:

let
inherit (pkgs.xfce) thunar-volman exo;
inherit (pkgs) glib;
in
{
programs.thunar.enable = true;
services.tumbler.enable = true; # Thumbnail support
programs.thunar.plugins = with pkgs.xfce; [ thunar-volman ];
programs.thunar = {
enable = true;
plugins = [ thunar-volman ];
};

environment.systemPackages = with pkgs; [
xfce.exo # Open with kitty support
services = {
tumbler.enable = true;
gvfs.enable = true;
gnome.gnome-keyring.enable = true;
};

environment.systemPackages = [
exo
glib
];

services.gvfs.enable = true; # Trash support
services.gnome.gnome-keyring.enable = true; # Mount support
}

0 comments on commit 2048bc6

Please sign in to comment.