1
1
Fork 0
nixos/options/custom/programs/firefox/firefox.nix
Myned 0b8dc8b94c
theme: migrate to stylix
Signed-off-by: Myned <dev@bjork.tech>
2025-03-15 17:30:53 -05:00

44 lines
1.1 KiB
Nix

{
config,
inputs,
lib,
pkgs,
...
}:
with lib; let
cfg = config.custom.programs.firefox;
in {
options.custom.programs.firefox = {
enable = mkOption {default = false;};
profile = mkOption {default = "default";};
};
config = mkIf cfg.enable {
home-manager.sharedModules = [
{
# https://www.mozilla.org/en-US/firefox/developer
programs.firefox = mkMerge [
(import ./.common.nix {
inherit config inputs lib pkgs;
profile = cfg.profile;
theme = true;
})
{
enable = true;
#// package = pkgs.firefox-devedition-bin;
}
];
# https://stylix.danth.me/options/modules/firefox.html
stylix.targets.firefox = {
# BUG: Tab groups not yet supported
# https://github.com/rafaelmardojai/firefox-gnome-theme/issues/901
# https://github.com/rafaelmardojai/firefox-gnome-theme
firefoxGnomeTheme.enable = true;
profileNames = [cfg.profile];
};
}
];
};
}