mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 07:58:30 +01:00
chore: Simplify thunar module
This commit is contained in:
parent
019603afc7
commit
2048bc62f8
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user