11 lines
172 B
Nix
11 lines
172 B
Nix
{ config, lib, pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
vimPlugins.LazyVim
|
|
git
|
|
wget
|
|
nixfmt-classic
|
|
btop
|
|
lazygit
|
|
];
|
|
}
|