nix-config/modules/nix/browser/librewolf.nix
2025-07-09 00:19:18 +02:00

16 lines
316 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.librewolf.enable = mkOption {
type = types.bool;
default = false;
description = "librewolf";
};
config = mkIf config.smayzy.librewolf.enable {
environment.systemPackages = with pkgs; [ librewolf ];
};
}