AnthoLume/shell.nix

18 lines
280 B
Nix
Raw Normal View History

2023-09-18 23:57:18 +00:00
{ pkgs ? import <nixpkgs> { } }:
2025-01-25 20:01:18 +00:00
let
unstable = import <nixpkgs-unstable> { };
in
2023-09-18 23:57:18 +00:00
pkgs.mkShell {
packages = with pkgs; [
go
nodejs
nodePackages.tailwindcss
2025-01-25 20:01:18 +00:00
unstable.templ
2023-11-04 23:40:32 +00:00
python311Packages.grip
2023-09-18 23:57:18 +00:00
];
2024-01-26 00:22:57 +00:00
shellHook = ''
export PATH=$PATH:~/go/bin
'';
2023-09-18 23:57:18 +00:00
}