From 7261a753663be99bca5f8cbc3c01fc9bdacb491c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Fri, 8 Nov 2024 11:12:29 +0100 Subject: [PATCH] Add dconf setting to maybe fix zoom menus --- home/gunter.nix | 1 + home/services/dconf.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 home/services/dconf.nix diff --git a/home/gunter.nix b/home/gunter.nix index c694ec8..8fc3ded 100644 --- a/home/gunter.nix +++ b/home/gunter.nix @@ -31,6 +31,7 @@ ./scripts ./services/backup-home.nix ./services/ghettoptt.nix + ./services/dconf.nix ./sops ./ssh ./zsh diff --git a/home/services/dconf.nix b/home/services/dconf.nix new file mode 100644 index 0000000..30d490a --- /dev/null +++ b/home/services/dconf.nix @@ -0,0 +1,6 @@ +{ pkgs, lib, ... }: +{ + dconf.settings = { + "org/gnome/desktop/wm/preferences".auto-rise = true; + }; +}