This commit is contained in:
2023-02-24 11:01:48 -05:00
parent 0fffe8d95d
commit a976ca82d1
2 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,8 @@
{ config, pkgs, lib, ... }:
{
options.mymods.beets.enable = lib.mkEnableOption "Beets music manager";
config = lib.mkIf config.mymods.beets.enable {
programs.beets = {
enable = true;
settings = {
@@ -144,7 +146,7 @@
};
};
}