mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-01-31 16:50:23 +00:00
12 lines
184 B
Nix
12 lines
184 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.udiskie = {
|
|
enable = true;
|
|
settings = {
|
|
programs_options = {
|
|
file_manager = "${pkgs.xfce.thunar}/bin/thunar";
|
|
};
|
|
};
|
|
};
|
|
}
|