fixing a typo in environment variables

This commit is contained in:
Chris Cochrun 2022-05-11 06:00:40 -05:00
parent 8a41a67507
commit b37e4bc179
2 changed files with 4 additions and 4 deletions

View file

@ -114,8 +114,8 @@ Notice how I am including all of my software here. It may be a big file, but hav
# Set default shell to be dash for speed
# environment.binsh = "${pkgs.dash}/bin/dash";
environment.variables = {
EDITOR = "emacsclient -t"
VISUAL = "emacsclient -c"
EDITOR = "emacsclient -t";
VISUAL = "emacsclient -c";
};
hardware.uinput.enable = true;

View file

@ -38,8 +38,8 @@
# Set default shell to be dash for speed
# environment.binsh = "${pkgs.dash}/bin/dash";
environment.variables = {
EDITOR = "emacsclient -t"
VISUAL = "emacsclient -c"
EDITOR = "emacsclient -t";
VISUAL = "emacsclient -c";
};
hardware.uinput.enable = true;