rebuild not working

This commit is contained in:
Charlie Root 2024-07-23 00:00:26 +02:00
commit f514c9b1b4
13 changed files with 280 additions and 12 deletions

View file

@ -2,12 +2,15 @@
inherit (lib.options) mkOption mkEnableOption;
inherit (lib) types;
in {
options.modules.usrEnv.services.media = {
mpd = {
enable = mkEnableOption "mpd service";
musicDirectory = mkOption {
description = "music directory for mpd";
type = types.str;
options.modules.usrEnv.services = {
locate.enable = mkEnableOption "Locate service";
media = {
mpd = {
enable = mkEnableOption "mpd service";
musicDirectory = mkOption {
description = "music directory for mpd";
type = types.str;
};
};
};
};