cmd-zet/flake.nix

20 lines
358 B
Nix
Raw Normal View History

2025-10-07 07:51:48 +01:00
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = inputs:
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs { inherit system; };
in
{
devShells.${system}.default =
with pkgs;
mkShell {
buildInputs = [
go
gopls
];
};
};
}