diff options
| author | Baitinq <[email protected]> | 2022-07-10 17:07:20 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-10 17:07:20 +0200 |
| commit | 636c91bfaeb09fb2cfa6f1f77e8640b584f26bfe (patch) | |
| tree | 6920baf675e7abf6bd2ad877e939c753205c9132 | |
| parent | mkHost: pass arguments in a set instead of currying (diff) | |
| download | nixos-config-636c91bfaeb09fb2cfa6f1f77e8640b584f26bfe.tar.gz nixos-config-636c91bfaeb09fb2cfa6f1f77e8640b584f26bfe.tar.bz2 nixos-config-636c91bfaeb09fb2cfa6f1f77e8640b584f26bfe.zip | |
fmt
| -rw-r--r-- | packages/lemacs/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/lemacs/default.nix b/packages/lemacs/default.nix index bab75ea..b6ad489 100644 --- a/packages/lemacs/default.nix +++ b/packages/lemacs/default.nix @@ -1,8 +1,8 @@ { writeShellScriptBin, ... }: writeShellScriptBin "lemacs" '' -if [ -n "$DISPLAY" ]; then - emacsclient -a "" -n -c "$@" -else - emacsclient -a "" -c "$@" -fi + if [ -n "$DISPLAY" ]; then + emacsclient -a "" -n -c "$@" + else + emacsclient -a "" -c "$@" + fi '' |