nixos/home/programs/firefox/default.nix

7 lines
194 B
Nix
Raw Normal View History

2024-02-27 21:20:00 +00:00
{ pkgs, config, lib, inputs, user, ... }: {
2024-02-27 08:58:20 +00:00
options.firefox.enable = lib.mkEnableOption "Firefox";
2024-02-27 21:20:00 +00:00
config =
lib.mkIf config.firefox.enable { programs.firefox = { enable = true; }; };
2024-02-27 08:58:20 +00:00
}