mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 14:23:55 -05:00
Aly Raffauf
59ba881046
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
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-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* home/gnome: remove module * home/gnome: remove option * nixos/gnome: remove module * nixos/gnome: remove option * gnome: remove option references * gnome: don't import nonexisting modules
15 lines
260 B
Nix
15 lines
260 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.firefox.enable {
|
|
programs.firefox = {
|
|
enable = true;
|
|
nativeMessagingHosts =
|
|
lib.optional (config.ar.home.apps.keepassxc.enable) pkgs.keepassxc;
|
|
};
|
|
};
|
|
}
|