15 lines
231 B
Nix
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.
|
|
};
|
|
}
|