Move text editor variable to editor config

This commit is contained in:
Agatha Lovelace 2023-09-29 15:03:50 +02:00
parent a95bfc857b
commit 06bad193c3
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
2 changed files with 3 additions and 3 deletions

View File

@ -37,9 +37,6 @@
environment.enableAllTerminfo = true;
environment.variables.COLORTERM = "truecolor";
# Set editor
environment.variables.EDITOR = "hx";
# Packages used on all systems
environment.systemPackages = with pkgs; [
comma

View File

@ -1,4 +1,7 @@
{ pkgs, lib, ... }: {
# Set editor
environment.variables.EDITOR = "hx";
home-manager.users.agatha = {
# Formatters/Language Servers that Helix uses
home.packages = with pkgs; [ nixfmt ];