add mise config

This commit is contained in:
insects 2024-08-04 21:46:53 +02:00
parent 5a0d06f011
commit 4675d6db52
2 changed files with 13 additions and 0 deletions

View file

@ -12,6 +12,7 @@
imports = [
./fish.nix
./neovim.nix
./mise.nix
];
nixpkgs = {

12
home-manager/mise.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }: {
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = {
tools = {
node = "lts";
};
};
};
}