diff options
author | pacien | 2022-11-09 17:46:50 +0100 |
---|---|---|
committer | pacien | 2022-11-09 17:46:50 +0100 |
commit | 02c382237ae0f829f27b33d089716edbe7ad8ef6 (patch) | |
tree | e15b4e412dda7f961acc39ebe1f90ee505cf1e3c /lib | |
parent | f72413e14c8ec430a145e003cb43d316de81de97 (diff) | |
download | flaky-utils-02c382237ae0f829f27b33d089716edbe7ad8ef6.tar.gz |
lib.mkSandboxSystem: reset terminal after exiting vm console
This was leaving the terminal in a bad state.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mk-sandbox-system.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/mk-sandbox-system.nix b/lib/mk-sandbox-system.nix index 6135a01..e216e29 100644 --- a/lib/mk-sandbox-system.nix +++ b/lib/mk-sandbox-system.nix | |||
@@ -82,6 +82,8 @@ in rec { | |||
82 | export SHARED_CWD | 82 | export SHARED_CWD |
83 | 83 | ||
84 | ${packages.${name}}/bin/run-${name}-vm | 84 | ${packages.${name}}/bin/run-${name}-vm |
85 | |||
86 | reset | ||
85 | ''); | 87 | ''); |
86 | }; | 88 | }; |
87 | 89 | ||