add chromium and android toolkit
All checks were successful
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

View File

@ -19,9 +19,12 @@
extraGroups = [ extraGroups = [
"networkmanager" "networkmanager"
"wheel" "wheel"
"adbusers"
]; ];
}; };
programs.adb.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
home-manager home-manager
mpv mpv

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;
};
}

View File

@ -4,5 +4,6 @@
./firefox.nix ./firefox.nix
./floorp.nix ./floorp.nix
./librewolf.nix ./librewolf.nix
./chromium.nix
]; ];
} }

View File

@ -46,6 +46,7 @@ in
fritzing.enable = true; fritzing.enable = true;
aegisub.enable = true; aegisub.enable = true;
tor.enable = true; tor.enable = true;
chromium.enable = true;
}; };
}; };
} }

View File

@ -44,6 +44,7 @@ in
fritzing.enable = true; fritzing.enable = true;
aegisub.enable = true; aegisub.enable = true;
alacritty.enable = true; alacritty.enable = true;
chromium.enable = true;
}; };
}; };
} }