28 lines
763 B
Nix
28 lines
763 B
Nix
{ self, ... }:
|
|
let
|
|
documentationModule = {
|
|
# This is how some downstream users currently generate documentation
|
|
# If this breaks notify them via matrix since we spent ~5 hrs for bughunting last time.
|
|
documentation.nixos.enable = true;
|
|
documentation.nixos.extraModules = [
|
|
self.nixosModules.clanCore
|
|
# This is the only option that is not part of the
|
|
# module because it is usually set by flake-parts
|
|
{ clan.core.clanDir = ./.; }
|
|
];
|
|
};
|
|
in
|
|
{
|
|
clan = {
|
|
machines.test-documentation = {
|
|
# Dummy file system
|
|
fileSystems."/".device = "/dev/null";
|
|
boot.loader.grub.device = "/dev/null";
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
imports = [
|
|
documentationModule
|
|
];
|
|
};
|
|
};
|
|
}
|