1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-12-20 22:25:08 +01:00
parent 1487c708c1
commit d61e17b73a
No known key found for this signature in database
7 changed files with 29 additions and 23 deletions

17
common/helix.nix Normal file
View file

@ -0,0 +1,17 @@
{
inputs,
lib,
pkgs,
...
}: let
package = inputs.hxwrap.packages.${pkgs.system}.default;
in {
environment.systemPackages = [package];
environment.sessionVariables = let
exe = builtins.baseNameOf (lib.getExe package);
in {
EDITOR = exe;
VISUAL = exe;
};
}