Files
config/profiles/web/docs/linux-docs.nix
2023-02-26 06:11:55 +01:00

9 lines
204 B
Nix

{ config, pkgs, lib, ... }:
{
services.docs-to-host.docs = [{
desc = "Linux kernel html documentation";
dirname = "linux-docs";
path = "${pkgs.linux-doc}/share/doc/linux-doc";
}];
}