summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2021-12-11 19:15:38 +0100
committerQuentin Aristote <quentin@aristote.fr>2021-12-11 19:15:38 +0100
commit7ed5d61859ffe1a468a38c1b241d37918d411995 (patch)
tree4052455bb0eb12e83efd59b1b9f439e9a6ff99ae /modules
parent60d57a08b80aefe5236b47e7afba8f36d8dd0d5d (diff)
aliases : remove bug introduced in previous commit
Diffstat (limited to 'modules')
-rw-r--r--modules/default.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/modules/default.nix b/modules/default.nix
index e4d9de4..ec30513 100644
--- a/modules/default.nix
+++ b/modules/default.nix
@@ -180,16 +180,10 @@ in {
makeAliasCommand = name: value:
let target = "${aliasDir}/${name}";
in ''
- echo '#!${pkgs.bash}/b Please let me know if you test positive for covid.
- Since there are no new cases since last weekend, I asked
- the teachers to teach face to face again.
-
- Take care of you,
-
- in/bash -e' > "${target}"
- echo "${value}" >> "${target}"
- chmod +x "${target}"
- '';
+ echo '#!${pkgs.bash}/bin/bash -e' > "${target}"
+ echo "${value}" >> "${target}"
+ chmod +x "${target}"
+ '';
in ([''
mkdir -p "${aliasDir}"
rm -f "${aliasDir}"/*