initialize config file

This commit is contained in:
2024-01-31 20:58:21 -05:00
parent b964d2ad92
commit b7f809d8bd
6 changed files with 230 additions and 7 deletions

View File

@@ -19,13 +19,13 @@
pname = "gotem";
version = "0.1.0";
src = ./.;
vendorHash = "sha256-eKeUhS2puz6ALb+cQKl7+DGvm9Cl+miZAHX0imf9wdg=";
vendorHash = "sha256-s2sFbD2IH+TzOdnnMAKtE+cNuPitVpHf/IYR9tqhfRE=";
};
packages.default = self.packages.${system}.gotem;
devShells.default = pkgs.mkShell {
name = "gotem";
buildInputs = with pkgs; [ go gopls ];
buildInputs = with pkgs; [ cobra-cli go gopls ];
};
}
);