♻ refactor(zoxide): Move zoxide into its own submodule

This commit is contained in:
punkfairie 2024-10-29 21:33:11 -07:00
parent af06a4e3f0
commit 747e024f7f
Signed by: punkfairie
GPG key ID: 01823C057725C266
3 changed files with 8 additions and 6 deletions

View file

@ -44,6 +44,7 @@
./xdg ./xdg
./xsession ./xsession
./zathura ./zathura
./zoxide
]; ];
# This value determines the Home Manager release that your configuration is # This value determines the Home Manager release that your configuration is

View file

@ -27,10 +27,4 @@
} }
]; ];
}; };
programs.zoxide = {
enable = true;
options = ["--cmd cd"];
};
} }

7
home/zoxide/default.nix Normal file
View file

@ -0,0 +1,7 @@
{...}: {
programs.zoxide = {
enable = true;
options = ["--cmd cd"];
};
}