nixos/firebird: Type all options

This commit is contained in:
Janne Heß 2019-12-29 23:59:52 +01:00 committed by Jörg Thalheim
parent ae6a6f421c
commit b3d1377084
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -59,6 +59,7 @@ in
port = mkOption { port = mkOption {
default = "3050"; default = "3050";
type = types.port;
description = '' description = ''
Port Firebird uses. Port Firebird uses.
''; '';
@ -66,6 +67,7 @@ in
user = mkOption { user = mkOption {
default = "firebird"; default = "firebird";
type = types.str;
description = '' description = ''
User account under which firebird runs. User account under which firebird runs.
''; '';
@ -73,6 +75,7 @@ in
baseDir = mkOption { baseDir = mkOption {
default = "/var/db/firebird"; # ubuntu is using /var/lib/firebird/2.1/data/.. ? default = "/var/db/firebird"; # ubuntu is using /var/lib/firebird/2.1/data/.. ?
type = types.str;
description = '' description = ''
Location containing data/ and system/ directories. Location containing data/ and system/ directories.
data/ stores the databases, system/ stores the password database security2.fdb. data/ stores the databases, system/ stores the password database security2.fdb.