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; -}