2025-01-12 11:43:50 +03:00

15 lines
231 B
Nix

{ pkgs, ... }:
{
programs.helix = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [
marksman
nil
gopls
];
# Stylix have troubles with theme for helix right now.
};
}