mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 08:11:54 -05:00
16 lines
354 B
Nix
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;
|
|
};
|
|
};
|
|
}
|