summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases/firebird.nix
diff options
context:
space:
mode:
authorDominik Xaver Hörl <hoe.dom@gmx.de>2020-04-20 20:05:26 +0200
committerDominik Xaver Hörl <hoe.dom@gmx.de>2020-04-21 08:55:36 +0200
commit0412bde9423cbc26d68d1d744b22ec4e45bcbac8 (patch)
treeb311635212d83efe027bf39184008959f48e12c1 /nixos/modules/services/databases/firebird.nix
parent3bbd074217cd11b6e14abec24655091b83aacc6f (diff)
treewide: add bool type to enable options, or make use of mkEnableOption
Add missing type information to manually specified enable options or replace them by mkEnableOption where appropriate.
Diffstat (limited to 'nixos/modules/services/databases/firebird.nix')
-rw-r--r--nixos/modules/services/databases/firebird.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/nixos/modules/services/databases/firebird.nix b/nixos/modules/services/databases/firebird.nix
index 042c9841df54..95837aa1cea6 100644
--- a/nixos/modules/services/databases/firebird.nix
+++ b/nixos/modules/services/databases/firebird.nix
@@ -40,12 +40,7 @@ in
services.firebird = {
- enable = mkOption {
- default = false;
- description = ''
- Whether to enable the Firebird super server.
- '';
- };
+ enable = mkEnableOption "the Firebird super server";
package = mkOption {
default = pkgs.firebirdSuper;