Add Cloudflare Warp configuration and extensions to dconf settings
This commit is contained in:
parent
69590f4bb4
commit
34085e0870
2 changed files with 32 additions and 0 deletions
|
@ -18,6 +18,26 @@ with lib.hm.gvariant;
|
||||||
"Ryujinx.desktop"
|
"Ryujinx.desktop"
|
||||||
"Marvel Rivals.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"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
12
hosts/global/common/warp.nix
Normal file
12
hosts/global/common/warp.nix
Normal file
|
@ -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
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue