rebuild not working
This commit is contained in:
parent
46d79f6f18
commit
f514c9b1b4
13 changed files with 280 additions and 12 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue