Updated readme with tons of information. Made kazuki a hercules agent. Fixed secrets ownerships. Started working on a custom installer iso. Changed helix theme.
45 lines
847 B
Nix
45 lines
847 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.helix = {
|
|
enable = true;
|
|
settings = {
|
|
editor = {
|
|
true-color = true;
|
|
line-number = "relative";
|
|
mouse = false;
|
|
cursor-shape.insert = "bar";
|
|
color-modes = true;
|
|
cursorline = true;
|
|
auto-save = true;
|
|
indent-guides.render = true;
|
|
theme = "base16_default_dark";
|
|
};
|
|
};
|
|
languages = {
|
|
language = [
|
|
{
|
|
name = "koka";
|
|
scope = "scope.koka";
|
|
file-types = ["kk"];
|
|
roots = [];
|
|
indent = {
|
|
tab-width = 4;
|
|
unit = " ";
|
|
};
|
|
}
|
|
{
|
|
name = "racket";
|
|
indent = {
|
|
tab-width = 2;
|
|
unit = " ";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
wrappers.helix.pathAdd = [pkgs.nil];
|
|
}
|