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

47 lines
1,012 B
Nix

{
config,
inputs,
lib,
pkgs,
...
}:
with lib; let
cfg = config.custom.programs.librewolf;
in {
options.custom.programs.librewolf = {
enable = mkOption {default = false;};
profile = mkOption {default = "default";};
};
config = mkIf cfg.enable {
home-manager.sharedModules = [
{
# https://librewolf.net/
# https://codeberg.org/librewolf
programs.librewolf = mkMerge [
(import ./.common.nix {
inherit config inputs lib pkgs;
profile = cfg.profile;
})
{
enable = true;
}
];
home.file = {
".librewolf/profiles.ini" = {
force = true;
};
};
# https://stylix.danth.me/options/modules/firefox.html
stylix.targets.librewolf = {
# https://github.com/rafaelmardojai/firefox-gnome-theme
firefoxGnomeTheme.enable = true;
profileNames = [cfg.profile];
};
}
];
};
}