47 lines
1,012 B
Nix
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];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|