Move text editor variable to editor config
This commit is contained in:
parent
a95bfc857b
commit
06bad193c3
|
@ -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
|
||||
|
|
|
@ -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 ];
|
||||
|
|
Loading…
Reference in New Issue