1
Fork 0
driftingnebula-com/flake.nix

22 lines
357 B
Nix
Raw Permalink Normal View History

2024-03-01 23:05:17 +00:00
{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
flake-utils,
nixpkgs,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}