USB storage devices: Difference between revisions
mNo edit summary |
Add workaround for https://github.com/nix-community/home-manager/issues/632 |
||
| Line 8: | Line 8: | ||
{{file|~/.config/home-manager/home.nix|nix|3= | {{file|~/.config/home-manager/home.nix|nix|3= | ||
services.udiskie | 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"; | |||
}; | |||
}; | |||
}; | |||
}} | |||
Once the configurations are reflected, USB storage devices will be instantly recognized when inserted without any additional operations needed. | Once the configurations are reflected, USB storage devices will be instantly recognized when inserted without any additional operations needed. | ||