mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
24 lines
337 B
Nix
24 lines
337 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
inherit (pkgs.xfce) thunar-volman exo;
|
|
inherit (pkgs) glib;
|
|
in
|
|
{
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = [ thunar-volman ];
|
|
};
|
|
|
|
services = {
|
|
tumbler.enable = true;
|
|
gvfs.enable = true;
|
|
gnome.gnome-keyring.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
exo
|
|
glib
|
|
];
|
|
}
|