nix/home/config/dconf/Privacy.nix

17 lines
377 B
Nix
Raw Normal View History

{ lib, ... }:
{
"org/gnome/desktop/privacy" = with lib.gvariant; {
disable-camera = false;
disable-microphone = false;
old-files-age = mkUint32 30;
recent-files-max-age = mkUint32 30;
remove-old-temp-files = true;
remove-old-trash-files = true;
report-technical-problems = true;
};
2024-05-12 02:40:37 +03:00
"org/gnome/system/location" = {
enabled = false;
};
2024-05-12 02:40:37 +03:00
}