chromium: add testbed

This commit is contained in:
Daniel Thwaites 2024-11-08 18:14:14 +00:00
parent 2ce89d2821
commit 8eb2da8d50
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
let package = pkgs.chromium;
in {
stylix.testbed.application = {
enable = true;
name = "chromium-browser";
inherit package;
};
environment.systemPackages = [ package ];
}