Move lightweight editor config to common module

This commit is contained in:
2024-09-23 16:20:51 -07:00
parent d3f46bf7c5
commit 2e956f2ddd
2 changed files with 4 additions and 1 deletions

View File

@@ -1,7 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
environment.variables = { environment.variables = {
EDITOR = "nano";
VISUAL = "code --wait"; VISUAL = "code --wait";
}; };

View File

@@ -14,6 +14,10 @@
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
environment.variables = {
EDITOR = "nano";
};
programs.git = { programs.git = {
enable = true; enable = true;
lfs.enable = true; lfs.enable = true;