{ config, pkgs, lib, ... }: let mkTuple = lib.hm.gvariant.mkTuple; in { dconf.settings = { "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = { binding = "Return"; command = "kitty"; name = "Launch console"; }; "org/gnome/shell/extensions/dash-to-panel" = { panel-positions = "{\"0\":\"BOTTOM\"}"; panel-sizes = "{\"0\":48}"; panel-lengths = "{\"0\":100}"; appicon-margin = 4; animate-appicon-hover = true; dot-style-focused = "METRO"; dot-style-unfocused = "DOTS"; trans-use-custom-opacity = true; trans-panel-opacity = 0.0; show-favorites = false; }; "org/gnome/settings-daemon/plugins/media-keys" = { custom-keybindings = [ "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/" ]; www = ["Return"]; }; "org/gnome/desktop/wm/keybindings" = { close = ["q"]; minimize = ["h"]; move-to-workspace-1=["1"]; move-to-workspace-2=["2"]; move-to-workspace-3=["3"]; move-to-workspace-4=["4"]; move-to-workspace-left=["h"]; move-to-workspace-right=["l"]; switch-to-workspace-1=["1"]; switch-to-workspace-2=["2"]; switch-to-workspace-3=["3"]; switch-to-workspace-4=["4"]; switch-to-workspace-left=["h"]; switch-to-workspace-right=["l"]; toggle-fullscreen=["f"]; toggle-on-all-workspaces=["p"]; }; "org/gnome/desktop/wm/preferences" = { workspace-names=["General" "Terminal"]; }; "org/gnome/desktop/interface" = { color-scheme="prefer-dark"; scaling-factor=1.5; show-battery-percentage=false; }; "org/gnome/desktop/background" = { color-shading-type="solid"; picture-options="zoom"; picture-uri="file:///home/alice/.wallpaper.jpg"; picture-uri-dark="file:///home/alice/.wallpaper.jpg"; primary-color="#000000000000"; secondary-color="#000000000000"; }; "org/gnome/desktop/input-sources" = { sources=[ (mkTuple["xkb" "dk"]) (mkTuple["xkb" "us"]) ]; xkb-options=["caps:escape"]; }; }; }