hackens-org-configurations/profiles/shared-hackens/vim.nix
2023-01-15 18:34:00 +01:00

9 lines
140 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
nixfmt
git
(neovim.override {
vimAlias = true;
})
];
}