Files
nixos-config/profiles/base/home-manager/mise.nix
Christoph Schmatzler 96e7b07d4b up
2025-08-11 15:04:41 +02:00

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";
};
};
};
}