16 lines
351 B
Nix
Executable File
16 lines
351 B
Nix
Executable File
{ config, lib, ... }:
|
|
|
|
{
|
|
services.udiskie = {
|
|
enable = true;
|
|
settings = {
|
|
# workaround for
|
|
# https://github.com/nix-community/home-manager/issues/632
|
|
program_options = {
|
|
# replace with your favorite file manager
|
|
file_manager = "${pkgs.nemo-with-extensions}/bin/nemo";
|
|
};
|
|
};
|
|
};
|
|
}
|