hackens-org-configurations/machines/hackens-milieu/vim.nix
2024-09-24 13:42:57 +02:00

10 lines
150 B
Nix

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