fix: proper null checking
This commit is contained in:
parent
233d03639c
commit
f8adbd437a
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ in {
|
|||
|
||||
shellAbbrs = {
|
||||
c = "clear";
|
||||
e = "${config.home.sessionVariables.EDITOR}";
|
||||
v = "${config.home.sessionVariables.EDITOR}";
|
||||
e = "${config.home.sessionVariables.EDITOR or "$EDITOR"}";
|
||||
v = "${config.home.sessionVariables.EDITOR or "$EDITOR"}";
|
||||
};
|
||||
|
||||
packages = [
|
||||
|
|
Loading…
Reference in a new issue