blob: 74fd650da43dc9124d742fe9c3dd5737e4e0082e (
plain) (
tree)
|
|
{
description = "baitinq.github.io flake";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}
|