19 lines
162 B
Nix
19 lines
162 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
git
|
|
nixfmt-rfc-style
|
|
nixfmt-tree
|
|
|
|
zip
|
|
unzip
|
|
];
|
|
|
|
}
|