mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-06-21 03:36:32 +05:30
19 lines
312 B
Nix
19 lines
312 B
Nix
{
|
|
flake.modules.nixos.desktop =
|
|
{ pkgs, ... }:
|
|
{
|
|
services = {
|
|
gvfs.enable = true;
|
|
tumbler.enable = true;
|
|
};
|
|
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = with pkgs; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
};
|
|
};
|
|
}
|