add chromium and android toolkit
nix flake show / show-flake (push) Successful in 32s

This commit is contained in:
smayzy
2025-07-30 11:40:34 +02:00
parent 12b0f8e27a
commit 27bc4cf9a4
5 changed files with 21 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ 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;
};
}
+1
View File
@@ -4,5 +4,6 @@
./firefox.nix
./floorp.nix
./librewolf.nix
./chromium.nix
];
}