16 lines
255 B
Nix
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";
|
|
};
|
|
};
|
|
|
|
}
|