nixcfg/homeManagerModules/apps/firefox/default.nix
Aly Raffauf 7798d01cae
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
add gnome modules (#108)
* firefox: add gnome browser connector

* lavaridge: remove commented gnome settings

* nixos: add gnome module

* nix fmt

* vscode: use custom titlebar on gnome

* theme: check for gnome before adding extraCss

* firefox: browsers in titlebar when gnome is enabled

* home: add gnome settings

* desktop: set gtk window decorations

* gnome: remove gsconnect

* Merge branch 'master' into add-gnome
2024-09-18 12:44:14 -04:00

16 lines
354 B
Nix

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.home.apps.firefox.enable {
programs.firefox = {
enable = true;
nativeMessagingHosts =
lib.optionals (config.ar.home.desktop.gnome.enable) [pkgs.gnome-browser-connector]
++ lib.optional (config.ar.home.apps.keepassxc.enable) pkgs.keepassxc;
};
};
}