Switch to doom emacs
This commit is contained in:
@@ -2,11 +2,7 @@
|
||||
|
||||
with lib;
|
||||
let
|
||||
reboot-if-necessary = pkgs.writeScriptBin "reboot-if-necessary" ''
|
||||
#!${pkgs.stdenv.shell}
|
||||
|
||||
set -ne
|
||||
|
||||
reboot-if-necessary = pkgs.writeShellScriptBin "reboot-if-necessary" ''
|
||||
if [ $# -ne 1 ]; then
|
||||
echo "FAILED: no sync file provided."
|
||||
exit 1
|
||||
@@ -24,15 +20,11 @@ let
|
||||
exit 0
|
||||
'';
|
||||
|
||||
test-config = pkgs.writeScriptBin "fudo-test-config" ''
|
||||
#!${pkgs.stdenv.shell}
|
||||
|
||||
set -ne
|
||||
|
||||
test-config = pkgs.writeShellScriptBin "fudo-test-config" ''
|
||||
if [ $# -gt 1 ]; then
|
||||
echo "usage: $0 [timeout]"
|
||||
exit 1
|
||||
elif [ $# -eq 1 ]; the
|
||||
elif [ $# -eq 1 ]; then
|
||||
TIMEOUT=$1
|
||||
else
|
||||
TIMEOUT=15m
|
||||
|
||||
Reference in New Issue
Block a user