Init repo

This commit is contained in:
2024-07-17 07:29:45 +02:00
commit dceea169c2
5 changed files with 192 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
description = "vrnp";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell.${system} = pkgs.mkShellNoCC {
packages = [
pkgs.go
];
};
};
}