infra/module/aspect/base/micro-editor.nix

24 lines
467 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
base = {
homeManager = {
programs = {
micro = {
enable = true;
settings = {
diffgutter = true;
keymenu = true;
mkparents = true;
tabsize = 2;
tabstospaces = true;
};
};
};
home.sessionVariables = {
EDITOR = "micro";
VISUAL = "micro";
};
};
};
};
}