2024-11-24 11:37:23 +03:00

14 lines
219 B
Nix

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