nixos/netatalk: add types

This commit is contained in:
Fritz Otlinghaus 2021-01-31 11:31:24 +01:00
parent 4015c5ca9c
commit 74cfc4d692
No known key found for this signature in database
GPG key ID: 1E5F98946FB1444E

View file

@ -46,6 +46,7 @@ in
enable = mkEnableOption "the Netatalk AFP fileserver";
port = mkOption {
type = types.port;
default = 548;
description = "TCP port to be used for AFP.";
};
@ -68,6 +69,7 @@ in
};
path = mkOption {
type = types.str;
default = "";
example = "afp-data";
description = "Share not the whole user home but this subdirectory path.";
@ -75,6 +77,7 @@ in
basedirRegex = mkOption {
example = "/home";
type = types.str;
description = "Regex which matches the parent directory of the user homes.";
};