23 lines
277 B
Nix
23 lines
277 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
|
||
|
programs = {
|
||
|
neovim = {
|
||
|
enable = true;
|
||
|
defaultEditor = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
vim
|
||
|
coreutils-full
|
||
|
nano
|
||
|
curl
|
||
|
wget
|
||
|
git
|
||
|
jq
|
||
|
rsync
|
||
|
];
|
||
|
}
|