From 0174e0f47a5b928dcb97e46386f3059af2659534 Mon Sep 17 00:00:00 2001 From: k Date: Sat, 21 Sep 2024 17:41:12 -0400 Subject: [PATCH] changed gnome look --- hosts/home/gnome.nix | 25 +++++++++++++++++++++++++ hosts/laptop/configuration.nix | 5 ----- hosts/laptop/home.nix | 1 + 3 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 hosts/home/gnome.nix diff --git a/hosts/home/gnome.nix b/hosts/home/gnome.nix new file mode 100644 index 0000000..4346387 --- /dev/null +++ b/hosts/home/gnome.nix @@ -0,0 +1,25 @@ +{ config, pkgs, inputs, ... }: + +{ + # ... + dconf.settings = { + # ... + "org/gnome/shell" = { + disable-user-extensions = false; + + # `gnome-extensions list` for a list + enabled-extensions = [ + "Vitals@CoreCoding.com" + "blur-my-shell@aunetx" + "search-light@icedman.github.com" + ]; + }; + }; + + home.packages = with pkgs; [ + gnomeExtensions.vitals + gnomeExtensions.blur-my-shell + gnomeExtensions.search-light + ]; +} + diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 18f9d52..82f9cc0 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -111,16 +111,11 @@ gnome-tour xterm cheese # webcam tool - gnome-music - gnome-weather - gnome-calendar gnome-contacts gnome-clocks gnome-maps - epiphany # web browser geary # email reader evince # document viewer - gnome-characters totem # video player tali # poker game iagno # go game diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index 2c61262..5052165 100644 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -3,6 +3,7 @@ { imports = [ ../home/home_common.nix + ../home/gnome.nix ]; stylix.enable = true;