12 lines
155 B
Nix
Raw Normal View History

2024-11-15 19:40:42 +03:00
{ pkgs, ... }:
{
programs.helix = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [
marksman
nil
];
};
}