From 4f427f345fb703c5db7ac01eb440a69cce09872b Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Mon, 21 Nov 2022 09:39:44 +1100 Subject: init --- flake.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..42dfd89 --- /dev/null +++ b/flake.nix @@ -0,0 +1,20 @@ +{ + description = "Slides for Bioinformatics division talk 2022"; + inputs = { + nixpkgs.url = "github:nixos/nixpkgs"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { + self, + nixpkgs, + flake-utils, + }: + flake-utils.lib.eachDefaultSystem (system: let + pkgs = import nixpkgs {inherit system;}; + in { + devShell = pkgs.mkShell { + buildInputs = with pkgs; [biber pkgs.texlive.combined.scheme-full]; + }; + }); +} -- cgit v1.2.3