nixos/home/programs/firefox/default.nix

18 lines
218 B
Nix
Raw Normal View History

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