summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-07-06 16:59:41 -0600
committerAlejandro Soto <alejandro@34project.org>2025-07-06 17:02:04 -0600
commitc3ea4dbc08c240f31556bf65977af2a123cb5bdb (patch)
tree2957f682ac1e2d21b2dee7f6a9d9115b570558f1
parenta76bf153d8e86994f7832e86a613bf3542b3dfd0 (diff)
home/baseline/graphics: disable GTK recent files
-rw-r--r--home/baseline/graphics.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/home/baseline/graphics.nix b/home/baseline/graphics.nix
index f065adb..5948dd0 100644
--- a/home/baseline/graphics.nix
+++ b/home/baseline/graphics.nix
@@ -1,6 +1,11 @@
{ config, lib, pkgs, ... }:
with lib; {
config = {
+ dconf.settings = {
+ "org/gtk/settings/file-chooser".startup-mode = "cwd";
+ "org/gtk/gtk4/settings/file-chooser".startup-mode = "cwd";
+ };
+
fonts.fontconfig.enable = true;
gtk = {
@@ -12,6 +17,14 @@ with lib; {
gtk-button-images=1
'';
+ gtk3.extraConfig = {
+ gtk-recent-files-enabled = 0;
+ };
+
+ gtk4.extraConfig = {
+ gtk-recent-files-enabled = 0;
+ };
+
font = {
package = pkgs.noto-fonts;
name = "Noto Sans Regular";