12 lines
228 B
Nix
12 lines
228 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.helix = {
|
|
enable = true;
|
|
settings = {theme = "everforest_dark_trans";};
|
|
};
|
|
|
|
home.file."helix/helix/themes/everforest_dark_trans.toml".src = [ ./everforest_dark_trans.toml ];
|
|
|
|
}
|