nixos/strichliste: fix typos in config keys

This commit is contained in:
Micha Ober
2026-06-16 23:23:48 +02:00
parent 1c0dad6682
commit 6762389874
+17 -15
View File
@@ -128,21 +128,23 @@ in
};
account = {
lower = mkOption {
type = types.int;
default = -200000;
example = 0;
description = ''
The credit limit for user accounts.
'';
};
boundary = {
lower = mkOption {
type = types.int;
default = -200000;
example = 0;
description = ''
The credit limit for user accounts.
'';
};
upper = mkOption {
type = types.ints.positive;
default = 200000;
description = ''
The maximum balance on a user account.
'';
upper = mkOption {
type = types.ints.positive;
default = 200000;
description = ''
The maximum balance on a user account.
'';
};
};
};
@@ -256,7 +258,7 @@ in
};
};
transaction = {
transactions = {
enabled = mkOption {
type = types.bool;
default = true;