cleanup, neovim optimizations and updates ig

This commit is contained in:
Nico
2025-05-29 14:50:58 +02:00
parent 6c601333a0
commit f85d945337
43 changed files with 1186 additions and 275 deletions

32
shells/go/flake.nix Normal file
View File

@@ -0,0 +1,32 @@
{
description = "GO";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShell =
with pkgs; mkShell rec {
# ANDROID_SDK_ROOT = "${androidSdk}/libexec/android-sdk";
GOPATH="${go}";
buildInputs = [
go
];
shellHook = ''
zsh
exit
'';
};
});
}