Home-Manager_dotfiles/helix.nix

13 lines
170 B
Nix
Raw Normal View History

2023-11-17 09:52:27 +00:00
{ pkgs, ... }:
{
# Helix configuration
programs.helix = {
enable = true;
defaultEditor = false;
settings = {
theme = "adwaita-dark";
};
};
}