nix-config/modules/nix/browser/chromium.nix
smayzy 27bc4cf9a4
All checks were successful
nix flake show / show-flake (push) Successful in 32s
add chromium and android toolkit
2025-07-30 11:40:34 +02:00

16 lines
286 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.chromium.enable = mkOption {
type = types.bool;
default = false;
description = "chromium";
};
config = mkIf config.smayzy.chromium.enable {
programs.chromium.enable = true;
};
}