From 6029f45c365283d21d3a79ea270561a99c0846ab Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Tue, 26 Apr 2022 10:38:07 -0400 Subject: [PATCH] Add shell flake --- shells/flake.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 shells/flake.nix diff --git a/shells/flake.nix b/shells/flake.nix new file mode 100644 index 0000000..40be3da --- /dev/null +++ b/shells/flake.nix @@ -0,0 +1,18 @@ +{ + description = "Immutable NixOS development shells."; + + inputs = { + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = inputs @ { self, nixpkgs, ... }: + inputs.flake-utils.lib.eachDefaultSystem (system: + let pkgs = nixpkgs.legacyPackages.${system}; + in + rec { + devShells.default = pkgs.mkShell { + + }; + } + ); +}