Add neovim and yt-dlp

This commit is contained in:
RealStickman 2023-05-01 12:33:34 +02:00
parent 187b86e622
commit 700bdea2eb

View File

@ -47,6 +47,8 @@ in
libnotify # notifications libnotify # notifications
mako # notification daemon mako # notification daemon
xdg-desktop-portal-hyprland # desktop portal (hyprland fork) xdg-desktop-portal-hyprland # desktop portal (hyprland fork)
neovim # text editor
yt-dlp # video downloader
]; ];
imports = [ imports = [
@ -75,6 +77,8 @@ in
# user environment variables # user environment variables
sessionVariables = { sessionVariables = {
SSH_AUTH_SOCK = "/run/user/1000/ssh-agent.socket"; SSH_AUTH_SOCK = "/run/user/1000/ssh-agent.socket";
EDITOR = "nvim";
VISUAL = "nvim";
}; };
}; };