config/profiles/web/docs/linux-docs.nix

9 lines
204 B
Nix
Raw Normal View History

2023-02-26 06:11:55 +01:00
{ config, pkgs, lib, ... }:
{
services.docs-to-host.docs = [{
desc = "Linux kernel html documentation";
dirname = "linux-docs";
path = "${pkgs.linux-doc}/share/doc/linux-doc";
}];
}