feat: made helix the default editor

This commit is contained in:
Nick 2025-10-03 01:50:42 -05:00
parent be3e8e10e2
commit 2b80fa8a3a

View file

@ -1,4 +1,9 @@
{ pkgs, flake, ... }:
{
pkgs,
flake,
lib,
...
}:
let
inherit (flake.config.people) user0;
in
@ -15,11 +20,12 @@ in
just
virt-manager
imagemagick
helix
;
};
variables = {
VIDEO_PLAYER = "mpv";
EDITOR = "hx";
EDITOR = lib.getExe pkgs.helix;
TERM = "ghostty";
XDG_DOWNLOAD_DIR = "/home/${user0}/downloads";
NIXPKGS_ALLOW_INSECURE = "1";