From 4d22132d6df5614c409ba6c6cc6db3611f6cad26 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Sat, 16 Sep 2023 16:06:58 +0200 Subject: [PATCH] GNOME config --- modules/gnome-config.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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;