Files
nix/home/modules/browser/librewolf.nix

13 lines
296 B
Nix

{ config, lib, inputs, pkgs, ... }:
{
config =
lib.mkIf (config.browser.primary == "librewolf" || config.browser.secondary == "librewolf")
{
programs.librewolf = {
enable = true;
}
// (import ./firefox-base.nix { inherit inputs pkgs; });
};
}