feat(nixos): enable USB auto-mounting with udiskie

- Enable udisks2 service
- Enable udiskie via Home Manager
This commit is contained in:
toast 2026-01-11 13:51:42 +09:00
parent 28e3903c3e
commit 8442a022bb
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.udiskie = {
enable = true;
settings = {
programs_options = {
file_manager = "${pkgs.xfce.thunar}/bin/thunar";
};
};
};
}