Add harelang support

This commit is contained in:
Leonora Tindall 2025-07-03 09:33:08 -05:00
parent a5d0620e61
commit b0be8db7d5
2 changed files with 13 additions and 0 deletions

12
hare.nix Normal file
View File

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
hare
haredoc
haredo
];
programs.neovim.plugins = with pkgs.vimPlugins; [
hare-vim
];
}

View File

@ -16,6 +16,7 @@ in
./fzf.nix
./zellij.nix
./jj.nix
./hare.nix
./packages-min.nix
];