15 lines
219 B
Nix
15 lines
219 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.helix = {
|
|
enable = true;
|
|
themes = {
|
|
everforest_dark_trans = ./everforest_dark_trans.toml;
|
|
};
|
|
settings = {
|
|
theme = "everforest_dark_trans";
|
|
};
|
|
};
|
|
|
|
}
|