nix-config/modules/home/editor/default.nix
2023-12-29 01:29:12 +01:00

13 lines
300 B
Nix

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