diff --git a/modules/gnome-config.nix b/modules/gnome-config.nix index 013e404..7a09383 100644 --- a/modules/gnome-config.nix +++ b/modules/gnome-config.nix @@ -13,6 +13,20 @@ home-manager.users.yoda = { osConfig, config, pkgs, ... }: { dconf.settings = { + "org/gnome/desktop/privacy" = { + # Settings > File History > Enabled + remember-recent-files = true; + # Settings > File History > File History Duration + recent-files-max-age = 30; + + # Settings > Trash and Temporary Files > Automatically Delete Trash Content + remove-old-trash-files = true; + # Settings > Trash and Temporary Files > Automatically Delete Temporary Files + remove-old-temp-files = true; + # Settings > Trash and Temporary Files > Automatically Delete Period + old-files-age = 30; + }; + "org/gnome/settings-daemon/plugins/color" = { night-light-enabled = true; night-light-schedule-automatic = false;