34 lines
717 B
Nix
34 lines
717 B
Nix
{
|
|
description = "learning.rs";
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
templ.url = "github:a-h/templ?ref=tags/v0.2.697";
|
|
};
|
|
outputs =
|
|
{ self
|
|
, nixpkgs
|
|
, flake-utils
|
|
, ...
|
|
} @ inputs:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
};
|
|
templ = inputs.templ.packages.${system}.templ;
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
go
|
|
golangci-lint
|
|
templ
|
|
nodePackages_latest.vercel
|
|
nodejs_20
|
|
corepack_20
|
|
];
|
|
};
|
|
});
|
|
}
|