mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
21 lines
315 B
Nix
21 lines
315 B
Nix
{ pkgs, ... }: {
|
|
|
|
# Install an actually usable system-wide editor
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
viAlias = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
curl
|
|
wget
|
|
pciutils
|
|
lshw
|
|
man-pages
|
|
rsync
|
|
bind.dnsutils
|
|
];
|
|
}
|