nixos/subsonic: use `port` type

launchpad/nixpkgs/master
Daniel Nagy 3 years ago
parent 06962df4d2
commit 34b4df8993
No known key found for this signature in database
GPG Key ID: 1B8E8DCB576FB671
  1. 4
      nixos/modules/services/misc/subsonic.nix

@ -28,7 +28,7 @@ let cfg = config.services.subsonic; in {
};
port = mkOption {
type = types.int;
type = types.port;
default = 4040;
description = ''
The port on which Subsonic will listen for
@ -37,7 +37,7 @@ let cfg = config.services.subsonic; in {
};
httpsPort = mkOption {
type = types.int;
type = types.port;
default = 0;
description = ''
The port on which Subsonic will listen for

Loading…
Cancel
Save