mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-25 07:08:38 +01:00
chore: Simplify thunar module
This commit is contained in:
parent
019603afc7
commit
2048bc62f8
@ -1,15 +1,23 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (pkgs.xfce) thunar-volman exo;
|
||||||
|
inherit (pkgs) glib;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
programs.thunar.enable = true;
|
programs.thunar = {
|
||||||
services.tumbler.enable = true; # Thumbnail support
|
enable = true;
|
||||||
programs.thunar.plugins = with pkgs.xfce; [ thunar-volman ];
|
plugins = [ thunar-volman ];
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
services = {
|
||||||
xfce.exo # Open with kitty support
|
tumbler.enable = true;
|
||||||
|
gvfs.enable = true;
|
||||||
|
gnome.gnome-keyring.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [
|
||||||
|
exo
|
||||||
glib
|
glib
|
||||||
];
|
];
|
||||||
|
|
||||||
services.gvfs.enable = true; # Trash support
|
|
||||||
services.gnome.gnome-keyring.enable = true; # Mount support
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user