Add a flake with an empty dev shell

This commit is contained in:
Sven van Heugten 2026-02-21 18:31:28 +01:00
parent 4508d3f1b3
commit f62f51f77e
No known key found for this signature in database
GPG key ID: D612F88666F4F660
3 changed files with 93 additions and 0 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell { };
}
);
}