Add dconf setting to maybe fix zoom menus

This commit is contained in:
Torjus Håkestad 2024-11-08 11:12:29 +01:00
parent b7cc060453
commit 7261a75366
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,7 @@
./scripts
./services/backup-home.nix
./services/ghettoptt.nix
./services/dconf.nix
./sops
./ssh
./zsh

6
home/services/dconf.nix Normal file
View File

@ -0,0 +1,6 @@
{ pkgs, lib, ... }:
{
dconf.settings = {
"org/gnome/desktop/wm/preferences".auto-rise = true;
};
}