nixcfg/homeManagerModules/guiApps/firefox/default.nix

9 lines
215 B
Nix
Raw Normal View History

2024-03-28 21:00:33 -04:00
{ pkgs, lib, config, ... }: {
options = { guiApps.firefox.enable = lib.mkEnableOption "Enables Firefox."; };
2024-03-28 21:00:33 -04:00
config = lib.mkIf config.guiApps.firefox.enable {
programs.firefox = { enable = true; };
2024-03-28 21:00:33 -04:00
};
}