fix: remove mise as package manager

natively install node, bun, uv
This commit is contained in:
Poby 2026-05-11 20:59:04 +09:00
parent 8b537c2d14
commit efd7b1e810
No known key found for this signature in database
11 changed files with 79 additions and 125 deletions

View file

@ -0,0 +1,3 @@
{
programs.bun.enable = true;
}

View file

@ -1,13 +1,15 @@
{...}: {
imports = [
./zoxide.nix
./bat.nix
./bun.nix
./eza.nix
./fd.nix
./fzf.nix
./jq.nix
./lazygit.nix
./mise.nix
./npm.nix
./ripgrep.nix
./uv.nix
./zoxide.nix
];
}

View file

@ -1,17 +0,0 @@
{
programs.mise = {
enable = true;
globalConfig = {
tools = {
node = "lts";
uv = "latest";
python = "3.13";
};
settings = {
experimental = true;
env_file = ".env";
};
};
};
}

View file

@ -0,0 +1,15 @@
{
config,
pkgs,
...
}: {
programs.npm = {
enable = true;
package = pkgs.nodejs_24;
settings.prefix = "${config.home.homeDirectory}/.npm";
};
home.sessionPath = [
"${config.home.homeDirectory}/.npm/bin"
];
}

View file

@ -0,0 +1,3 @@
{
programs.uv.enable = true;
}