mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
9 lines
215 B
Nix
9 lines
215 B
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
options = { guiApps.firefox.enable = lib.mkEnableOption "Enables Firefox."; };
|
|
|
|
config = lib.mkIf config.guiApps.firefox.enable {
|
|
programs.firefox = { enable = true; };
|
|
};
|
|
}
|