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.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Enable the OpenSSH daemon. programs.ssh.startAgent = true;
services.openssh.enable = true;
nix.gc = { nix.gc = {
automatic = true; automatic = true;

View file

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