nix-config/modules/home/editor/default.nix
2023-11-24 05:09:42 +01:00

14 lines
307 B
Nix

{ pkgs, ... }:
let
themes = {
rosepine = builtins.fromTOML "${builtins.readFile ./rose_pine_dawn.toml}";
};
in {
programs.helix = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [ nil marksman ];
settings = import ./helix-config.nix;
themes = themes;
};
}