hackens-org-configurations/machines/hackens-milieu/vim.nix

11 lines
150 B
Nix
Raw Normal View History

2024-09-24 12:33:51 +02:00
{ pkgs, ... }:
{
2021-11-02 19:30:28 +01:00
environment.systemPackages = with pkgs; [
2024-09-24 12:33:51 +02:00
nixfmt-rfc-style
2021-11-02 19:30:28 +01:00
git
(neovim.override {
vimAlias = true;
})
];
}