mirror of
https://github.com/JuLi0n21/shit-cache.git
synced 2026-06-05 03:26:29 +00:00
20 lines
377 B
Nix
20 lines
377 B
Nix
{
|
|
description = "Dev environment for shit-proxy";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }:
|
|
let
|
|
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
|
in
|
|
{
|
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
go_1_26
|
|
];
|
|
};
|
|
};
|
|
}
|