Files
nixos-conf/home-manager/packages/helix/helix.nix
2025-08-30 13:45:22 -06:00

16 lines
255 B
Nix

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