1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/onedrive/example-config.nix
2025-04-26 16:40:10 -05:00

22 lines
529 B
Nix

{
programs.onedrive = {
enable = true;
settings = {
check_nomount = "false";
check_nosync = "false";
classify_as_big_delete = "1000";
cleanup_local_files = "false";
disable_notifications = "false";
no_remote_delete = "false";
rate_limit = "0";
resync = "false";
skip_dotfiles = "false";
};
};
nmt.script = ''
assertFileExists home-files/.config/onedrive/config
assertFileContent home-files/.config/onedrive/config \
${./example-config}
'';
}