DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 6486e5e7f18f3eb88d3e3dc7109c512106317628 felu/flake.nix -rw-r--r-- 835 bytes
6486e5e7Jonni Liljamo chore: update... everything 6 months ago
                                                                                
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
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    templ = {
      url = "github:a-h/templ?ref=tags/v0.2.598";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = inputs@{ self, nixpkgs, templ }:
  let
    allSystems = [
      "x86_64-linux"
    ];

    forAllSystems = f: nixpkgs.lib.genAttrs allSystems (system: f {
      pkgs = import nixpkgs { inherit system; };
      templ-pkg = inputs.templ.packages.${system}.default;
    });
  in
  {
    devShells = forAllSystems ({ pkgs, templ-pkg }: {
      default = pkgs.mkShell {
        buildInputs = [
          pkgs.go
          pkgs.gopls

          # sqlite web inspector for developing
          pkgs.sqlite-web

          pkgs.tailwindcss
          pkgs.tailwindcss-language-server

          templ-pkg
        ];
      };
    });
  };
}