11.stylix/modules/firefox/testbed.nix
2024-11-08 18:00:44 +00:00

21 lines
366 B
Nix

{ 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" ];
}];
}