Switch to doom emacs

This commit is contained in:
nostoromo root
2020-12-02 08:44:56 -08:00
parent 28e8e54f0c
commit eef3234edb
5 changed files with 139 additions and 41 deletions

View File

@@ -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