add mise module with codex, remove standalone mise package

This commit is contained in:
Harivansh Rathi 2026-03-29 16:36:50 -04:00
parent d17f7f09c3
commit 801a2d8cfd
3 changed files with 11 additions and 1 deletions

View file

@ -11,6 +11,7 @@
./git.nix
./k9s.nix
./lazygit.nix
./mise.nix
./migration.nix
./nvim.nix
./skills.nix

10
home/mise.nix Normal file
View file

@ -0,0 +1,10 @@
{...}: {
programs.mise = {
enable = true;
globalConfig = {
tools = {
"npm:@openai/codex" = "latest";
};
};
};
}