13 lines
298 B
Nix
13 lines
298 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
# Option to enable Zen Browser installation
|
|
options.enableZenBrowser =
|
|
lib.mkEnableOption "Install Zen Browser";
|
|
|
|
config = lib.mkIf (config.enableZenBrowser or false) {
|
|
# Add the package system-wide
|
|
environment.systemPackages = [ pkgs.zen-browser ];
|
|
};
|
|
}
|