- `foot` fonts and background color - `helix` editor - `pass` related aliases in shell - `nix-index` automatic update - `sway`/`waybar` changes - new `beebox` host - `kodi` module - `coredns` for `hs`
21 lines
319 B
Nix
21 lines
319 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.helix = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "onedark";
|
|
editor = {
|
|
indent-guides.render = true;
|
|
cursor-shape = {
|
|
insert = "bar";
|
|
normal = "block";
|
|
select = "underline";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|