summaryrefslogtreecommitdiff
path: root/flake.nix
blob: b9c103ec4c975466516df53abafebeba0423072f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  description = "getchoo's personal website";

  inputs = {
    nixpkgs.url = "nixpkgs/nixos-22.11";
    nixpkgsUnstable.url = "nixpkgs/nixos-unstable";
    flake-utils.url = "github:numtide/flake-utils";
    pre-commit-hooks = {
      url = "github:cachix/pre-commit-hooks.nix";
      inputs.nixpkgs-stable.follows = "nixpkgs";
      inputs.nixpkgs.follows = "nixpkgsUnstable";
      inputs.flake-utils.follows = "flake-utils";
    };
  };

  outputs = {
    self,
    nixpkgsUnstable,
    flake-utils,
    pre-commit-hooks,
    ...
  }:
    flake-utils.lib.eachDefaultSystem (system: let
      pkgs = import nixpkgsUnstable {inherit system;};
    in {
      checks = {
        pre-commit-check = pre-commit-hooks.lib.${system}.run {
          src = ./.;
          hooks = {
            alejandra.enable = true;
            prettier.enable = true;
            editorconfig-checker.enable = true;
          };
        };
      };

      devShells = let
        inherit (pkgs) mkShell;
        inherit (self.checks.${system}.pre-commit-check) shellHook;
      in {
        default = mkShell {
          inherit shellHook;
          packages = with pkgs; [
            alejandra
            deno
            nodePackages.prettier
          ];
        };
      };
    });
}