summaryrefslogtreecommitdiff
path: root/hosts/editors.nix
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2024-07-21 01:09:48 +0700
committerpolwex <polwex@sortug.com>2024-07-21 01:09:48 +0700
commit78907aa98c1af8624a62ca123d088c6c16424f41 (patch)
tree477fe923810522acc211b7514e4931af80f33ed7 /hosts/editors.nix
init
Diffstat (limited to 'hosts/editors.nix')
-rw-r--r--hosts/editors.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/editors.nix b/hosts/editors.nix
new file mode 100644
index 0000000..fec5580
--- /dev/null
+++ b/hosts/editors.nix
@@ -0,0 +1,12 @@
+{
+ pkgs,
+ inputs,
+ ...
+}: {
+ environment.variables.EDITOR = "hx";
+ environment.systemPackages = [
+ pkgs.neovim
+ # inputs.helix.packages.${pkgs.system}.helix
+ pkgs.helix
+ ];
+}