hackens-org-configurations/machines/hackens-milieu/shared-hackens/vim.nix
2024-01-12 16:19:31 +01:00

9 lines
140 B
Nix

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