14 lines
219 B
Nix
Raw Normal View History

2024-11-15 19:40:42 +03:00
{ pkgs, ... }:
{
programs.helix = {
enable = true;
defaultEditor = true;
2024-11-24 11:37:23 +03:00
2024-11-15 19:40:42 +03:00
extraPackages = with pkgs; [
marksman
nil
];
2024-11-24 11:37:23 +03:00
# Stylix have troubles with theme for helix right now.
2024-11-15 19:40:42 +03:00
};
}