9 lines
140 B
Nix
9 lines
140 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
nixfmt
|
|
git
|
|
(neovim.override {
|
|
vimAlias = true;
|
|
})
|
|
];
|
|
}
|