Files
config/profiles/http/docs/linux-docs.nix
2024-01-26 21:45:22 +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";
}];
}