nix-config/home/modules/graphical/udiskie.nix
lightly-toasted 9082adb7af chore: update inputs
- Update flake inputs
- Update package names
- Update hyprland window rules
- Set programs.zsh.dotDir
2026-02-14 15:49:37 +09:00

12 lines
179 B
Nix

{ pkgs, ... }:
{
services.udiskie = {
enable = true;
settings = {
programs_options = {
file_manager = "${pkgs.thunar}/bin/thunar";
};
};
};
}