mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-29 21:29:17 -05:00
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;
|
|
};
|
|
};
|
|
}
|