From cc2ab192d96a0fdbfb6a4ab7a4b460b15a6be49d Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Fri, 18 Oct 2024 19:29:56 +0530 Subject: [PATCH] feat: accent colors are finally on gnome --- hosts/default/home/gnome.nix | 33 +++++++++++---------- hosts/default/home/sources/paperwm/user.css | 4 --- 2 files changed, 17 insertions(+), 20 deletions(-) delete mode 100644 hosts/default/home/sources/paperwm/user.css diff --git a/hosts/default/home/gnome.nix b/hosts/default/home/gnome.nix index 5aff878..9abe962 100644 --- a/hosts/default/home/gnome.nix +++ b/hosts/default/home/gnome.nix @@ -1,22 +1,23 @@ -{ config, pkgs, ... }: { - - home.packages = with pkgs.gnomeExtensions; [ - blur-my-shell - quick-settings-tweaker - user-themes - caffeine - paperwm - ] ++ (with pkgs; [ - blackbox-terminal - adw-gtk3 - gnome-secrets - fractal - ]); +{ config, pkgs, ... }: +{ + home.packages = + with pkgs.gnomeExtensions; + [ + blur-my-shell + quick-settings-tweaker + user-themes + caffeine + paperwm + ] + ++ (with pkgs; [ + blackbox-terminal + adw-gtk3 + gnome-secrets + fractal + ]); # the above two get merged - home.file.".config/paperwm/user.css".source = ./sources/paperwm/user.css; - # Refer to https://hoverbear.org/blog/declarative-gnome-configuration-in-nixos/ dconf.settings = { "org/gnome/calculator" = { diff --git a/hosts/default/home/sources/paperwm/user.css b/hosts/default/home/sources/paperwm/user.css deleted file mode 100644 index c959ddd..0000000 --- a/hosts/default/home/sources/paperwm/user.css +++ /dev/null @@ -1,4 +0,0 @@ -.paperwm-selection { - border: none; - border-radius: 16px !important; -}