18 lines
218 B
Nix
18 lines
218 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
inputs,
|
|
user,
|
|
...
|
|
}:
|
|
{
|
|
options.firefox.enable = lib.mkEnableOption "Firefox";
|
|
|
|
config = lib.mkIf config.firefox.enable {
|
|
programs.firefox = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|