nixos-config/modules/home/services/udiskie/default.nix

8 lines
113 B
Nix
Raw Normal View History

{ config, ... }:
2024-10-09 03:36:08 -04:00
{
services.udiskie = {
enable = config.home.desktop.enable;
automount = false;
};
2024-08-24 22:16:51 -04:00
}