Since the merge of https://github.com/NixOS/nixpkgs/pull/247848
(cherry picked from commit 7b8d43fbaf
)
Co-authored-by: Christian Albrecht <christian.albrecht@mayflower.de>
This commit is contained in:
parent
7f351e2993
commit
2a6679aa9c
|
@ -107,7 +107,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
type = types.attrsOf types.string;
|
type = types.attrsOf types.str;
|
||||||
description = ''
|
description = ''
|
||||||
Extra key-value pairs to add to the <literal>[Desktop Entry]</literal> section.
|
Extra key-value pairs to add to the <literal>[Desktop Entry]</literal> section.
|
||||||
This may override other values.
|
This may override other values.
|
||||||
|
|
|
@ -36,7 +36,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
dsaFingerprint = mkOption {
|
dsaFingerprint = mkOption {
|
||||||
type = with types; nullOr string;
|
type = with types; nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
example = literalExpression
|
example = literalExpression
|
||||||
"SHA256:1111111111111111111111111111111111111111111";
|
"SHA256:1111111111111111111111111111111111111111111";
|
||||||
|
@ -44,7 +44,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
rsaFingerprint = mkOption {
|
rsaFingerprint = mkOption {
|
||||||
type = with types; nullOr string;
|
type = with types; nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
example = literalExpression
|
example = literalExpression
|
||||||
"SHA256:1111111111111111111111111111111111111111111";
|
"SHA256:1111111111111111111111111111111111111111111";
|
||||||
|
|
Loading…
Reference in a new issue