1
1
Fork 0
nixos/options/custom/services/onedrive.nix

16 lines
279 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.services.onedrive;
in {
options.custom.services.onedrive.enable = mkOption {default = false;};
config = mkIf cfg.enable {
# https://github.com/abraunegg/onedrive
services.onedrive.enable = true;
};
}