Initial commit

This commit is contained in:
2023-09-18 00:26:42 +01:00
commit 1fd025e6d6
17 changed files with 458 additions and 0 deletions

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
let
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { };
in
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with unstable; [
go
gopls
air
nodePackages.vscode-css-languageserver-bin
nodePackages.vscode-html-languageserver-bin
];
}