nixos/nix-daemon: fix typo

This commit is contained in:
Scott Olson 2022-03-29 21:13:54 +01:00
parent 00e27c78d3
commit bada6a2e04

View File

@ -409,14 +409,14 @@ in
to = mkOption {
type = referenceAttrs;
example = { type = "github"; owner = "my-org"; repo = "my-nixpkgs"; };
description = "The flake reference <option>from></option> is rewritten to.";
description = "The flake reference <option>from</option> is rewritten to.";
};
flake = mkOption {
type = types.nullOr types.attrs;
default = null;
example = literalExpression "nixpkgs";
description = ''
The flake input <option>from></option> is rewritten to.
The flake input <option>from</option> is rewritten to.
'';
};
exact = mkOption {