aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2025-03-17 00:00:00 +0000
committertdro <tdro@users.noreply.github.com>2025-03-17 00:00:00 +0000
commit98b260306cf8c19c65a343d6752a412470f2c29d (patch)
tree9b5c7cc11d2123e0dbc04816b3276e94317fe68b
parentac02c30d3c82a23a3c6e3e471240c3fe0441eca9 (diff)
downloaddotfiles-98b260306cf8c19c65a343d6752a412470f2c29d.tar.gz
dotfiles-98b260306cf8c19c65a343d6752a412470f2c29d.tar.bz2
dotfiles-98b260306cf8c19c65a343d6752a412470f2c29d.zip
.config/nixpkgs/shells: Ensure shell cleanup
-rw-r--r--.config/nixpkgs/shells/ansible/shell.nix2
-rw-r--r--.config/nixpkgs/shells/bubblewrap/shell.nix2
-rw-r--r--.config/nixpkgs/shells/firejail/shell.nix2
-rw-r--r--.config/nixpkgs/shells/larynx-server/shell.nix2
-rw-r--r--.config/nixpkgs/shells/larynx/shell.nix2
-rw-r--r--.config/nixpkgs/shells/mermaid-live-editor/shell.nix2
-rw-r--r--.config/nixpkgs/shells/nsjail/shell.nix2
-rw-r--r--.config/nixpkgs/shells/planner/shell.nix2
-rw-r--r--.config/nixpkgs/shells/proot/shell.nix2
-rw-r--r--.config/nixpkgs/shells/pure/shell.nix2
-rw-r--r--.config/nixpkgs/shells/scribus/shell.nix2
-rw-r--r--.config/nixpkgs/shells/tilp2/shell.nix2
-rw-r--r--.config/vim/snippets/shell.nix2
13 files changed, 13 insertions, 13 deletions
diff --git a/.config/nixpkgs/shells/ansible/shell.nix b/.config/nixpkgs/shells/ansible/shell.nix
index fda0953..1219ab4 100644
--- a/.config/nixpkgs/shells/ansible/shell.nix
+++ b/.config/nixpkgs/shells/ansible/shell.nix
@@ -40,5 +40,5 @@ let
in pkgs.mkShell {
inherit name;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}
diff --git a/.config/nixpkgs/shells/bubblewrap/shell.nix b/.config/nixpkgs/shells/bubblewrap/shell.nix
index aee8a8b..6ab755a 100644
--- a/.config/nixpkgs/shells/bubblewrap/shell.nix
+++ b/.config/nixpkgs/shells/bubblewrap/shell.nix
@@ -31,6 +31,6 @@ in pkgs.mkShell {
inherit name;
shellHook = ''
printf '%s\n' "${jail}/bin/${jail.name}"
- exec "${jail}/bin/${jail.name}"
+ ${jail}/bin/${jail.name}; exit
'';
}
diff --git a/.config/nixpkgs/shells/firejail/shell.nix b/.config/nixpkgs/shells/firejail/shell.nix
index 4f5e5e1..038185a 100644
--- a/.config/nixpkgs/shells/firejail/shell.nix
+++ b/.config/nixpkgs/shells/firejail/shell.nix
@@ -43,6 +43,6 @@ in pkgs.mkShell {
inherit name;
shellHook = ''
printf '%s\n' "${jail}/bin/${jail.name}"
- exec "${jail}/bin/${jail.name}"
+ ${jail}/bin/${jail.name}; exit
'';
}
diff --git a/.config/nixpkgs/shells/larynx-server/shell.nix b/.config/nixpkgs/shells/larynx-server/shell.nix
index 9021e47..b788fe3 100644
--- a/.config/nixpkgs/shells/larynx-server/shell.nix
+++ b/.config/nixpkgs/shells/larynx-server/shell.nix
@@ -50,5 +50,5 @@ let
in pkgs.mkShell {
inherit fhs;
inherit name;
- shellHook = "exec ${fhs}/bin/${fhs.name}";
+ shellHook = "${fhs}/bin/${fhs.name}; exit";
}
diff --git a/.config/nixpkgs/shells/larynx/shell.nix b/.config/nixpkgs/shells/larynx/shell.nix
index ac2e940..3210922 100644
--- a/.config/nixpkgs/shells/larynx/shell.nix
+++ b/.config/nixpkgs/shells/larynx/shell.nix
@@ -50,5 +50,5 @@ let
in pkgs.mkShell {
inherit fhs;
inherit name;
- shellHook = "exec ${fhs}/bin/${fhs.name}";
+ shellHook = "${fhs}/bin/${fhs.name}; exit";
}
diff --git a/.config/nixpkgs/shells/mermaid-live-editor/shell.nix b/.config/nixpkgs/shells/mermaid-live-editor/shell.nix
index db89a42..0269ac6 100644
--- a/.config/nixpkgs/shells/mermaid-live-editor/shell.nix
+++ b/.config/nixpkgs/shells/mermaid-live-editor/shell.nix
@@ -70,5 +70,5 @@ let
in pkgs.mkShell {
inherit name;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}
diff --git a/.config/nixpkgs/shells/nsjail/shell.nix b/.config/nixpkgs/shells/nsjail/shell.nix
index d954588..19a6f25 100644
--- a/.config/nixpkgs/shells/nsjail/shell.nix
+++ b/.config/nixpkgs/shells/nsjail/shell.nix
@@ -47,6 +47,6 @@ in pkgs.mkShell {
inherit name;
shellHook = ''
printf '%s\n' "${jail}/bin/${jail.name}"
- exec "${jail}/bin/${jail.name}"
+ ${jail}/bin/${jail.name}; exit
'';
}
diff --git a/.config/nixpkgs/shells/planner/shell.nix b/.config/nixpkgs/shells/planner/shell.nix
index 079beda..0c7c417 100644
--- a/.config/nixpkgs/shells/planner/shell.nix
+++ b/.config/nixpkgs/shells/planner/shell.nix
@@ -64,5 +64,5 @@ let
in pkgs.mkShell {
inherit name package;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}
diff --git a/.config/nixpkgs/shells/proot/shell.nix b/.config/nixpkgs/shells/proot/shell.nix
index 46ed76f..4d523f0 100644
--- a/.config/nixpkgs/shells/proot/shell.nix
+++ b/.config/nixpkgs/shells/proot/shell.nix
@@ -47,6 +47,6 @@ in pkgs.mkShell {
inherit name;
shellHook = ''
printf '%s\n' "${jail}/bin/${jail.name}"
- exec "${jail}/bin/${jail.name}"
+ ${jail}/bin/${jail.name}; exit
'';
}
diff --git a/.config/nixpkgs/shells/pure/shell.nix b/.config/nixpkgs/shells/pure/shell.nix
index 2e58365..932c87e 100644
--- a/.config/nixpkgs/shells/pure/shell.nix
+++ b/.config/nixpkgs/shells/pure/shell.nix
@@ -18,5 +18,5 @@ let
in pkgs.mkShell {
inherit name;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}
diff --git a/.config/nixpkgs/shells/scribus/shell.nix b/.config/nixpkgs/shells/scribus/shell.nix
index 9658c0a..ce96a26 100644
--- a/.config/nixpkgs/shells/scribus/shell.nix
+++ b/.config/nixpkgs/shells/scribus/shell.nix
@@ -92,5 +92,5 @@ let
in pkgs.mkShell {
inherit name package;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}
diff --git a/.config/nixpkgs/shells/tilp2/shell.nix b/.config/nixpkgs/shells/tilp2/shell.nix
index f57bc3b..e7d4085 100644
--- a/.config/nixpkgs/shells/tilp2/shell.nix
+++ b/.config/nixpkgs/shells/tilp2/shell.nix
@@ -62,5 +62,5 @@ let
in pkgs.mkShell {
inherit name package;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}
diff --git a/.config/vim/snippets/shell.nix b/.config/vim/snippets/shell.nix
index 2e58365..932c87e 100644
--- a/.config/vim/snippets/shell.nix
+++ b/.config/vim/snippets/shell.nix
@@ -18,5 +18,5 @@ let
in pkgs.mkShell {
inherit name;
- shellHook = "exec ${shell}/bin/${shell.name}";
+ shellHook = "${shell}/bin/${shell.name}; exit";
}