From de84d7bab3f0befc31662e2a7fa344d106e4c0e9 Mon Sep 17 00:00:00 2001 From: Nicola Tuveri Date: Sat, 16 Nov 2024 17:33:21 +0200 Subject: [PATCH] fixup! Add support for controlling the behaviour of document-proxy icons --- modules/system/defaults/universalaccess.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/modules/system/defaults/universalaccess.nix b/modules/system/defaults/universalaccess.nix index 98804b7f..cdc135d3 100644 --- a/modules/system/defaults/universalaccess.nix +++ b/modules/system/defaults/universalaccess.nix @@ -52,14 +52,13 @@ with lib; ''; }; - #system.defaults.universalaccess.showWindowTitlebarIcons = mkOption { - # # Disabled because it requires sudo - # # type = types.nullOr types.bool; - # default = null; - # description = '' - # Always show folder icon before title in the title bar - # ''; - #}; + system.defaults.universalaccess.showWindowTitlebarIcons = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Always show folder icon before title in the title bar + ''; + }; }; }