Set nvim as default editor, enable ssh-agent

This commit is contained in:
Evie Litherland-Smith 2023-03-29 08:18:17 +01:00
parent 1befebfd59
commit 99fea827d7
2 changed files with 5 additions and 3 deletions

View file

@ -21,8 +21,7 @@ in
networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Enable the OpenSSH daemon.
services.openssh.enable = true;
programs.ssh.startAgent = true;
nix.gc = {
automatic = true;

View file

@ -1,8 +1,11 @@
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
};
home.packages = with pkgs; [
neovim
gnumake
gcc
python310Packages.pynvim