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