mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
modules: types.string throws error now (#4324)
Since the merge of https://github.com/NixOS/nixpkgs/pull/247848
This commit is contained in:
committed by
GitHub
parent
903e06d734
commit
7b8d43fbaf
@@ -107,7 +107,7 @@ let
|
||||
};
|
||||
|
||||
settings = mkOption {
|
||||
type = types.attrsOf types.string;
|
||||
type = types.attrsOf types.str;
|
||||
description = ''
|
||||
Extra key-value pairs to add to the `[Desktop Entry]` section.
|
||||
This may override other values.
|
||||
|
||||
@@ -36,7 +36,7 @@ in {
|
||||
};
|
||||
|
||||
dsaFingerprint = mkOption {
|
||||
type = with types; nullOr string;
|
||||
type = with types; nullOr str;
|
||||
default = null;
|
||||
example = literalExpression
|
||||
"SHA256:1111111111111111111111111111111111111111111";
|
||||
@@ -44,7 +44,7 @@ in {
|
||||
};
|
||||
|
||||
rsaFingerprint = mkOption {
|
||||
type = with types; nullOr string;
|
||||
type = with types; nullOr str;
|
||||
default = null;
|
||||
example = literalExpression
|
||||
"SHA256:1111111111111111111111111111111111111111111";
|
||||
|
||||
Reference in New Issue
Block a user