docs-site/flake.nix

18 lines
393 B
Nix
Raw Normal View History

{
description = "A Clicks project";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs =
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell { packages = [ pkgs.bun ]; };
formatter = pkgs.nixfmt;
}
);
}