1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 00:19:25 +03:00
nixpkgs/nixos/modules/programs/ladybird.nix

21 lines
303 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}:
2024-05-31 10:50:51 +02:00
let
cfg = config.programs.ladybird;
in
{
2024-05-31 10:50:51 +02:00
options = {
programs.ladybird.enable = lib.mkEnableOption "the Ladybird web browser";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ pkgs.ladybird ];
fonts.fontDir.enable = true;
};
}