added different categories for home-manager module options instead of having them clumped together

This commit is contained in:
pagedmov
2024-11-08 01:37:03 -05:00
parent 4a3fb537b9
commit 21c9141c2b
22 changed files with 83 additions and 77 deletions

View File

@@ -1,8 +1,8 @@
{lib, config, inputs, pkgs, ... }: {
options = {
movOpts.cavaConfig.enable = lib.mkEnableOption "enables my cava settings";
movOpts.programConfigs.cavaConfig.enable = lib.mkEnableOption "enables my cava settings";
};
config = lib.mkIf config.movOpts.cavaConfig.enable {
config = lib.mkIf config.movOpts.programConfigs.cavaConfig.enable {
programs.cava = {
enable = true;
};