1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 19:23:01 +03:00
mobile-nixos/modules/documentation.nix
2021-01-09 19:23:20 -05:00

18 lines
401 B
Nix

{ config, lib, ... }:
let
inherit (lib) mkOption types;
in
{
options = {
mobile.documentation = {
systemTypeFargment = mkOption {
type = types.path;
description = "Used to choose the generic documentation fragment for the system.";
default = ./system-types + "/${config.mobile.system.type}/device-notes.adoc.erb";
internal = true;
};
};
};
}