nix-config/modules/home/editor/default.nix
2023-11-13 18:28:30 +01:00

13 lines
208 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
nil
marksman
];
programs.helix = {
enable = true;
defaultEditor = true;
settings = ./config.toml;
themes = ./rosepine.toml;
};
}