From 34085e0870115da9e79c399f743d9fdf1aa07a5f Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Fri, 13 Jun 2025 15:31:41 -0400 Subject: [PATCH] Add Cloudflare Warp configuration and extensions to dconf settings --- home/hosts/gojo/config/dconf.nix | 20 ++++++++++++++++++++ hosts/global/common/warp.nix | 12 ++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 hosts/global/common/warp.nix diff --git a/home/hosts/gojo/config/dconf.nix b/home/hosts/gojo/config/dconf.nix index 622506a..301e524 100644 --- a/home/hosts/gojo/config/dconf.nix +++ b/home/hosts/gojo/config/dconf.nix @@ -18,6 +18,26 @@ with lib.hm.gvariant; "Ryujinx.desktop" "Marvel Rivals.desktop" ]; + + enabled-extensions = [ + "AlphabeticalAppGrid@stuarthayhurst" + "appindicatorsupport@rgcjonas.gmail.com" + "auto-accent-colour@Wartybix" + "blur-my-shell@aunetx" + "color-picker@tuberry" + "dash-in-panel@fthx" + "just-perfection-desktop@just-perfection" + "monitor-brightness-volume@ailin.nemui" + "pano@elhan.io" + "paperwm@paperwm.github.com" + "quicksettings-audio-devices-hider@marcinjahn.com" + "quicksettings-audio-devices-renamer@marcinjahn.com" + "undecorate@sun.wxg@gmail.com" + "user-theme@gnome-shell-extensions.gcampax.github.com" + "solaar-extension@sidevesh" + "Vitals@CoreCoding.com" + "cloudflare-warp-toggle@khaled.is-a.dev" + ]; }; }; } diff --git a/hosts/global/common/warp.nix b/hosts/global/common/warp.nix new file mode 100644 index 0000000..288d04b --- /dev/null +++ b/hosts/global/common/warp.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + cloudflare-warp + gnomeExtensions.cloudflare-warp-toggle # QS toggle + ]; + + systemd = { + packages = [ pkgs.cloudflare-warp ]; + targets.multi-user.wants = [ "warp-svc.service" ]; # Autostart Warp service + }; +}