15 lines
329 B
Nix
15 lines
329 B
Nix
{pkgs, ...}: {
|
|
programs.mise = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
enableZshIntegration = true;
|
|
globalConfig = {
|
|
env = {
|
|
KERL_CONFIGURE_OPTIONS = "--with-termcap";
|
|
CPPFLAGS = "-I${pkgs.ncurses.dev}/include";
|
|
LDFLAGS = "-L${pkgs.ncurses.out}/lib";
|
|
};
|
|
};
|
|
};
|
|
}
|