Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions nixos/modules/services/audio/mopidy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@ in {

services.mopidy = {

enable = mkOption {
default = false;
type = types.bool;
description = ''
Whether to enable Mopidy, a music player daemon.
'';
};
enable = mkEnableOption "Mopidy, a music player daemon";

dataDir = mkOption {
default = "/var/lib/mopidy";
Expand Down
6 changes: 1 addition & 5 deletions nixos/modules/services/audio/ympd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ in {

services.ympd = {

enable = mkOption {
type = types.bool;
default = false;
description = "Whether to enable ympd, the MPD Web GUI.";
};
enable = mkEnableOption "ympd, the MPD Web GUI";

webPort = mkOption {
type = types.string;
Expand Down