diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-07 19:24:53 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-07 19:24:53 +0200 |
commit | 73b4ab6874ba799894f2e4e1993ca9690e5b94d8 (patch) | |
tree | 1e36d6bc2dab14b8236147dcd652c9522e64d42d | |
parent | a2bf84b09e02861c3a0258f0f4f16831c13e63b3 (diff) | |
download | nixos-configuration-73b4ab6874ba799894f2e4e1993ca9690e5b94d8.tar.gz nixos-configuration-73b4ab6874ba799894f2e4e1993ca9690e5b94d8.tar.bz2 nixos-configuration-73b4ab6874ba799894f2e4e1993ca9690e5b94d8.zip |
chore: stub for default environment variables
This is needed because nushell uses $env.* for environment, doesn't work
with sessionVariables apparently
-rw-r--r-- | home-manager/stvnliu/shells/env/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home-manager/stvnliu/shells/env/default.nix b/home-manager/stvnliu/shells/env/default.nix new file mode 100644 index 0000000..9f2ab73 --- /dev/null +++ b/home-manager/stvnliu/shells/env/default.nix @@ -0,0 +1,7 @@ +{ + pkgs, + config, + ... +}: { + EDITOR = "nvim"; +} |