runtimeterror/flake.nix

25 lines
451 B
Nix
Raw Normal View History

{
description = "runtimeterror build environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
{
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
agate
go
hugo
nodePackages.npm
];
2024-04-27 19:07:07 +00:00
shellHook = ''
source .env
'';
};
};
}