From 700bdea2eb6ccfa296cfcb8d9901ce32fea85c03 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 1 May 2023 12:33:34 +0200 Subject: [PATCH] Add neovim and yt-dlp --- home-manager.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-manager.nix b/home-manager.nix index 4489d1e..d0887d5 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -47,6 +47,8 @@ in libnotify # notifications mako # notification daemon xdg-desktop-portal-hyprland # desktop portal (hyprland fork) + neovim # text editor + yt-dlp # video downloader ]; imports = [ @@ -75,6 +77,8 @@ in # user environment variables sessionVariables = { SSH_AUTH_SOCK = "/run/user/1000/ssh-agent.socket"; + EDITOR = "nvim"; + VISUAL = "nvim"; }; };