{ pkgs, wallpaper, ... }: { home.packages = with pkgs.gnomeExtensions; [ quick-settings-audio-panel tray-icons-reloaded espresso pano ]; dconf.settings = { # Use `dconf watch /` to track stateful changes you are doing, then set them here. "org/gnome/shell" = { disable-user-extensions = false; enabled-extensions = [ "quick-settings-audio-panel@rayzeq.github.io" "places-menu@gnome-shell-extensions.gcampax.github.com" "launch-new-instance@gnome-shell-extensions.gcampax.github.com" "trayIconsReloaded@selfmade.pl" "espresso@coadmunkee.github.com" "pano@elhan.io" ]; }; "org/gnome/desktop/interface" = { color-scheme = "prefer-dark"; gtk-theme = "Adwaita-dark"; }; "org/gnome/desktop/background" = let width = 3840; height = 2160; in { picture-uri = "file://${wallpaper.override { preset = "nord-snow-aurora"; inherit width; inherit height; }}/share/wallpapers/nixos-wallpaper.png"; picture-uri-dark = "file://${wallpaper.override { preset = "nord-night-aurora"; inherit width; inherit height; }}/share/wallpapers/nixos-wallpaper.png"; }; "org/gnome/desktop/wm/keybindings" = { switch-to-workspace-left = ["1"]; switch-to-workspace-right = ["2"]; move-to-workspace-left = ["1"]; move-to-workspace-right = ["2"]; }; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = { binding = "a"; command = "kgx"; name = "Console"; }; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1" = { binding = "f"; command = "nautilus"; name = "File Manager"; }; "org/gnome/settings-daemon/plugins/media-keys" = { custom-keybindings = [ "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/" "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/" ]; }; "org/gnome/mutter" = { edge-tiling = true; dynamic-workspaces = true; }; "org/gnome/Console" = { theme = "auto"; }; "org/gnome/simple-scan" = { text-dpi = 300; }; "org/gnome/shell/extensions/pano" = { play-audio-on-copy = false; # This solves the stuttering issue for me. # https://github.com/oae/gnome-shell-pano/issues/79 send-notification-on-copy = false; }; "org/gnome/shell/extensions/espresso" = { show-notifications = false; }; "org/gnome/nautilus/preferences" = { show-image-thumbnails = "always"; }; "org/gnome/Weather" = { locations = "[<(uint32 2, <('Vienna', 'LOWW', true, [(0.83979426423570236, 0.2891428852314914)], [(0.84124869946126679, 0.28565222672750273)])>)>]"; }; "org/gnome/shell/weather" = { automatic-location = true; locations = "[<(uint32 2, <('Vienna', 'LOWW', true, [(0.83979426423570236, 0.2891428852314914)], [(0.84124869946126679, 0.28565222672750273)])>)>]"; }; }; }