summaryrefslogtreecommitdiff
path: root/hosts/editors.nix
blob: 2128d90a0c1741cd49b5b174efe2db9860722ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  pkgs,
  inputs,
  ...
}: {
  environment.variables.EDITOR = "hx";
  environment.variables.F = "hx";
  environment.systemPackages = with pkgs; [
    neovim
    # inputs.helix.packages.${pkgs.system}.helix
    helix
    # for json formatting on helix
    nodePackages.prettier
    vscode-langservers-extracted
    nil
    alejandra
    superhtml
  ];
}