From 55ee036fd7ebed24097c8da1ca8a0b0829264670 Mon Sep 17 00:00:00 2001 From: Emile Date: Sat, 9 Mar 2024 22:56:01 +0100 Subject: big bang --- nix/templates/ctf/flake.nix | 47 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 nix/templates/ctf/flake.nix (limited to 'nix/templates/ctf/flake.nix') diff --git a/nix/templates/ctf/flake.nix b/nix/templates/ctf/flake.nix new file mode 100644 index 0000000..de6e2c1 --- /dev/null +++ b/nix/templates/ctf/flake.nix @@ -0,0 +1,47 @@ +{ + description = "ctf"; + nixConfig.bash-prompt = "\[ctf\]; "; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs"; + }; + + # Flake outputs + outputs = { self, nixpkgs }: + let + # Systems supported + allSystems = [ + "x86_64-linux" # 64-bit Intel/AMD Linux + "aarch64-linux" # 64-bit ARM Linux + "x86_64-darwin" # 64-bit Intel macOS + "aarch64-darwin" # 64-bit ARM macOS + ]; + + # Helper to provide system-specific attributes + nameValuePair = name: value: { inherit name value; }; + genAttrs = names: f: builtins.listToAttrs (map (n: nameValuePair n (f n)) names); + forAllSystems = f: genAttrs allSystems (system: f { + pkgs = import nixpkgs { inherit system; }; + }); + in + { + # Development environment output + devShells = forAllSystems ({ pkgs }: { + default = + let + python = pkgs.python311; # Use Python 3.11 + in + pkgs.mkShell { + packages = with pkgs; [ + qemu + ] ++ [ + # Python plus helper tools + (python.withPackages (ps: with ps; [ + pwntools + pycryptodome + ])) + ]; + }; + }); + }; +} -- cgit 1.4.1