15 lines
231 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
2025-01-12 11:43:50 +03:00
gopls
2024-11-15 19:40:42 +03:00
];
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
};
}