feat: move librewolf to separate module.

This commit is contained in:
CronyAkatsuki 2025-03-18 10:37:45 +01:00
parent 66bb85fe03
commit 339292682e
4 changed files with 54 additions and 23 deletions

View file

@ -0,0 +1,17 @@
{
config,
lib,
...
}: {
imports = [
./librewolf.nix
];
options = {
crony.browsers.enable = lib.mkEnableOption "Enable my browsers and customize them";
};
config = lib.mkIf config.crony.browsers.enable {
crony.browsers.librewolf.enable = lib.mkDefault true;
};
}