feat: some more home-manager programs

This commit is contained in:
Sangmin Kim 2026-03-04 22:30:52 +09:00 committed by Poby
parent 54297f94fd
commit 88baae6581
No known key found for this signature in database
8 changed files with 35 additions and 118 deletions

18
home/mise.nix Normal file
View file

@ -0,0 +1,18 @@
{
progrmas.mise = {
enable = true;
enableZshIntegration = true;
enableBashIntegration = true;
globalConfig = {
tools = {
node = "lts";
uv = "latest";
};
settings = {
experimental = true;
env_file = ".env";
};
};
};
}