mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 19:23:01 +03:00
18 lines
401 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|