dotfiles/.config/nixshell/go.nix
2023-04-08 16:59:16 +02:00

10 lines
140 B
Nix

let
pkgs = import <nixpkgs> {};
unstable = import <unstable> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
go
];
}