nix-config/home/udiskie.nix

14 lines
238 B
Nix
Raw Normal View History

2021-04-05 03:47:49 +02:00
{ config, lib, ... }:
let
cfg = config.my.home.udiskie;
in
{
options.my.home.udiskie = with lib; {
enable = mkEnableOption "udiskie configuration";
};
config.services.udiskie = lib.mkIf cfg.enable {
enable = true;
};
}