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, self, ...}: {
options = {
movOpts.zshConfig.enable = lib.mkEnableOption "enables my zsh configuration";
movOpts.envConfig.zshConfig.enable = lib.mkEnableOption "enables my zsh configuration";
};
config = lib.mkIf config.movOpts.zshConfig.enable {
config = lib.mkIf config.movOpts.envConfig.zshConfig.enable {
programs.zoxide = {
enable = true;
enableZshIntegration = true;