Files
nixos-conf/home-manager/packages/helix/helix.nix
2025-08-27 12:57:58 -06:00

15 lines
219 B
Nix

{ config, pkgs, ... }:
{
programs.helix = {
enable = true;
themes = {
everforest_dark_trans = ./everforest_dark_trans.toml;
};
settings = {
theme = "everforest_dark_trans";
};
};
}