fixup! all of my custom options are now held in an attribute set called movOpts

This commit is contained in:
pagedmov
2024-11-06 20:11:37 -05:00
parent fc327f501c
commit 1a2402dee7
39 changed files with 195 additions and 187 deletions

View File

@@ -1,8 +1,8 @@
{lib, config, self, ...}: {
options = {
zshConfig.enable = lib.mkEnableOption "enables my zsh configuration";
movOpts.zshConfig.enable = lib.mkEnableOption "enables my zsh configuration";
};
config = lib.mkIf config.zshConfig.enable {
config = lib.mkIf config.movOpts.zshConfig.enable {
programs.zoxide = {
enable = true;
enableZshIntegration = true;