Files
nixos-conf/home-manager/packages/helix/helix.nix
2025-08-20 09:38:25 -06:00

16 lines
164 B
Nix

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
helix
];
programs.helix = {
enable = true;
settings = {theme = "everforest_dark";};
};
}