about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <git@emile.space>2023-02-19 04:47:13 +0100
committerEmile <git@emile.space>2023-02-19 04:47:13 +0100
commit283f834f240104447b1599c7fd9b712d446d039a (patch)
tree01e8e46d5541d897671bbaeaf966377b38ee29ab
parente61b60b35b8ba07cac0624b4344c8d840bb5bba0 (diff)
added some more information to the flake.nix
-rw-r--r--flake.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 18b4180..bd7a3f0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,6 +1,6 @@
 {
-  description = "Nix pwn env";
-  nixConfig.bash-prompt = "\[pwn\]; ";
+  description = "Nix HackTM CTF 'know your lambda calculus' challenge dev setup (nix develop for shell, python3 solve.py)";
+  nixConfig.bash-prompt = "\[HackTM CTF lambda\]; ";
 
   inputs = {
     nixpkgs.url = "github:NixOS/nixpkgs";
@@ -33,14 +33,10 @@
           in
           pkgs.mkShell {
             packages = [ # The Nix packages provided in the environment
-
               # Python plus helper tools
               (python.withPackages (ps: with ps; [
-                virtualenv # Virtualenv
-                pip # The pip installer
-                pwntools # The pip installer
+                pwntools
               ]))
-
             ];
           };
       });