This commit is contained in:
Christoph Schmatzler
2025-08-11 15:04:41 +02:00
parent 2171163c83
commit 96e7b07d4b

View File

@@ -1,7 +1,14 @@
{ {pkgs, ...}: {
programs.mise = { programs.mise = {
enable = true; enable = true;
enableFishIntegration = true; enableFishIntegration = true;
enableZshIntegration = true; enableZshIntegration = true;
globalConfig = {
env = {
KERL_CONFIGURE_OPTIONS = "--with-termcap";
CPPFLAGS = "-I${pkgs.ncurses.dev}/include";
LDFLAGS = "-L${pkgs.ncurses.out}/lib";
};
};
}; };
} }