noogle/flake.nix

27 lines
828 B
Nix
Raw Normal View History

2022-11-26 12:36:08 +03:00
{
2023-11-23 14:31:33 +03:00
description = "Noogle.dev | Discover the nix api surface";
2023-01-25 17:54:44 +03:00
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-master.url = "nixpkgs/master";
2023-01-25 17:54:44 +03:00
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-23 14:31:33 +03:00
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
2022-11-26 12:36:08 +03:00
2023-11-23 14:31:33 +03:00
floco.url = "github:aakropotkin/floco";
floco.inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-23 14:31:33 +03:00
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } ({ ... }: {
systems = [ "x86_64-linux" ];
imports = [ ./devShell.nix ./preCommit.nix ./website/flake-module.nix ];
});
2022-11-26 12:36:08 +03:00
}