nixcfg/homeManagerModules/guiApps/firefox/default.nix

13 lines
218 B
Nix
Raw Normal View History

2024-04-07 22:16: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 {
2024-04-07 22:16:33 -04:00
programs.firefox = {enable = true;};
2024-03-28 21:00:33 -04:00
};
}