Add go devshell

This commit is contained in:
SebastianStork 2025-01-06 21:03:05 +01:00
parent 4adbe68617
commit d27f5aa016

View file

@ -8,7 +8,8 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.cpp =
devShells.${system} = {
cpp =
pkgs.mkShell.override
{
stdenv = pkgs.clangStdenv;
@ -20,6 +21,10 @@
qt6.full
];
};
go = pkgs.mkShell {
packages = with pkgs; [ go ];
};
};
formatter.${system} = pkgs.nixfmt-rfc-style;
};