diff --git a/shells/flake.nix b/shells/flake.nix deleted file mode 100644 index 40be3da..0000000 --- a/shells/flake.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - 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 { - - }; - } - ); -}