nixos-config/home/firefox.nix

21 lines
423 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.home.firefox;
in
{
options.my.home.firefox = with lib; {
enable = (mkEnableOption "firefox config") // { default = config.my.home.x.enable; };
};
config = lib.mkIf cfg.enable {
programs.firefox = {
enable = true;
package = pkgs.unstable.firefox.override {
cfg = {
enableTridactylNative = true;
};
};
};
};
}