nixos/firebird: Type all options

Changed files
+3
nixos
modules
services
databases
+3
nixos/modules/services/databases/firebird.nix
···
port = mkOption {
default = "3050";
+
type = types.port;
description = ''
Port Firebird uses.
'';
···
user = mkOption {
default = "firebird";
+
type = types.str;
description = ''
User account under which firebird runs.
'';
···
baseDir = mkOption {
default = "/var/db/firebird"; # ubuntu is using /var/lib/firebird/2.1/data/.. ?
+
type = types.str;
description = ''
Location containing data/ and system/ directories.
data/ stores the databases, system/ stores the password database security2.fdb.