From 272ff3ca6daa67ab3c0a024e36ae3556418d81d0 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 24 Feb 2022 11:46:50 +0800 Subject: [PATCH] nixos/themes/a-happy-gnome: update list of applications --- .../themes/a-happy-gnome/config/dconf/desktop.conf | 4 ++++ modules/nixos/themes/a-happy-gnome/default.nix | 13 +++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/modules/nixos/themes/a-happy-gnome/config/dconf/desktop.conf b/modules/nixos/themes/a-happy-gnome/config/dconf/desktop.conf index 3d4a0fca..6be44ee7 100644 --- a/modules/nixos/themes/a-happy-gnome/config/dconf/desktop.conf +++ b/modules/nixos/themes/a-happy-gnome/config/dconf/desktop.conf @@ -24,6 +24,10 @@ focus-change-on-pointer-rest=true overlay-key='Super_L' workspaces-only-on-primary=true +# My preferred world clocks for easier tracking of global events. +[org/gnome/clocks] +world-clocks=[{'location': <(uint32 2, <('New York', 'KNYC', true, [(0.71180344078725644, -1.2909618758762367)], [(0.71059804659265924, -1.2916478949920254)])>)>}, {'location': <(uint32 2, <('Coordinated Universal Time (UTC)', '@UTC', false, @a(dd) [], @a(dd) [])>)>}, {'location': <(uint32 2, <('Cairo', 'HECA', true, [(0.52592587544986047, 0.54803338512621935)], [(0.52447144022429604, 0.54541539124822791)])>)>}] + [org/gnome/shell/world-clocks] locations=[<(uint32 2, <('New York', 'KNYC', true, [(0.71180344078725644, -1.2909618758762367)], [(0.71059804659265924, -1.2916478949920254)])>)>, <(uint32 2, <('Coordinated Universal Time (UTC)', '@UTC', false, @a(dd) [], @a(dd) [])>)>, <(uint32 2, <('Cairo', 'HECA', true, [(0.52592587544986047, 0.54803338512621935)], [(0.52447144022429604, 0.54541539124822791)])>)>] diff --git a/modules/nixos/themes/a-happy-gnome/default.nix b/modules/nixos/themes/a-happy-gnome/default.nix index 4849848a..4586c752 100644 --- a/modules/nixos/themes/a-happy-gnome/default.nix +++ b/modules/nixos/themes/a-happy-gnome/default.nix @@ -33,7 +33,6 @@ in epiphany gnome-terminal gnome-music - gnome-software yelp ] ++ (with pkgs; [ gnome-user-docs @@ -59,12 +58,19 @@ in }; environment.systemPackages = with pkgs; [ + + # The application menu. + junction + # It is required for custom menus in extensions. gnome-menus # Good ol' unofficial preferences tool. gnome.gnome-tweaks + # A third-party extension manager. + gnome-extension-manager + # My preferred extensions. gnomeExtensions.arcmenu gnomeExtensions.appindicator @@ -88,11 +94,6 @@ in gnome-search-provider-browser-tabs.gnome-shell-extension gnome-search-provider-browser-tabs.web-extension gnome-search-provider-browser-tabs.connector - - # Setting up Pop shell. - gnome-shell-extension-pop-shell - pop-launcher - pop-launcher-plugin-duckduckgo-bangs ]; }; }