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