diff --git a/modules/home/firefox.nix b/modules/home/firefox.nix index 6d33f0b..25f80c7 100644 --- a/modules/home/firefox.nix +++ b/modules/home/firefox.nix @@ -15,6 +15,7 @@ in { config = lib.mkIf cfg.enable { programs.firefox = { enable = true; + nativeMessagingHosts = lib.optional cfg.passFF pkgs.passff-host; # Default profile profiles.jonas = { @@ -91,8 +92,5 @@ in { ++ lib.optional cfg.passFF passff); }; }; - home.packages = - lib.optional cfg.passFF - pkgs.passff-host; }; }