firefox: add testbed

This commit is contained in:
Daniel Thwaites 2024-11-08 18:00:44 +00:00
parent 195e324074
commit 6c67f75101
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
let package = pkgs.firefox;
in {
stylix.testbed.application = {
enable = true;
name = "firefox";
inherit package;
};
home-manager.sharedModules = [{
programs.firefox = {
enable = true;
inherit package;
profiles.stylix.isDefault = true;
};
stylix.targets.firefox.profileNames = [ "stylix" ];
}];
}