All checks were successful
Build iso when a new version is pushed / test (push) Successful in 2m38s
22 lines
510 B
Nix
22 lines
510 B
Nix
{ config, lib, inputs, ... }:
|
|
|
|
{
|
|
options.mods.firefox.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = "install and configure firefox";
|
|
};
|
|
|
|
config = lib.mkIf config.mods.firefox.enable {
|
|
catppuccin.firefox.enable = true;
|
|
programs.firefox = {
|
|
enable = lib.mkDefault true;
|
|
profiles.default = {
|
|
extensions.packages = with inputs.firefox-addons.packages."x86_64-linux";
|
|
[vimium ublock-origin];
|
|
extensions.force = true;
|
|
};
|
|
};
|
|
};
|
|
}
|