nix-config/modules/home/editor/default.nix
2023-12-27 21:13:16 +01:00

13 lines
297 B
Nix

{ pkgs, ... }: {
programs.helix = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [ nil marksman ];
settings = import ./helix-config.nix;
};
# programs.vscode = {
# enable = true;
# enableUpdateCheck = false;
# package = pkgs.vscodium;
# };
}