Skip to content

gotha/nixpkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nixpkgs

collection of packages for nix

Available Packages

use in devShell

{
  description = "my nix-flake";

  inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
  inputs.gotha.url = "github:gotha/nixpkgs?ref=main";

  outputs = { self, nixpkgs, gotha, ... }:
    let
      supportedSystems =
        [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
      forEachSupportedSystem = f:
        nixpkgs.lib.genAttrs supportedSystems
        (system: f { pkgs = import nixpkgs { inherit system; }; });
    in {
      devShells = forEachSupportedSystem ({ pkgs }: {
        default = pkgs.mkShell {
          packages = with pkgs; [
            coreutils
            (gotha.packages.${system}.auggie)
            (gotha.packages.${system}.context7-mcp)
            (gotha.packages.${system}.gcloud-mcp)
            (gotha.packages.${system}.goose)
            (gotha.packages.${system}.kubectl-mcp-server)
            (gotha.packages.${system}.linkedin-mcp-server)
            (gotha.packages.${system}.mcp-atlassian)
            (gotha.packages.${system}.mcp-server-git)
            (gotha.packages.${system}.mcp-server-github)
            (gotha.packages.${system}.mcp-server-memory)
            (gotha.packages.${system}.mcp-server-playwright)
            (gotha.packages.${system}.mcp-server-sequential-thinking)
            (gotha.packages.${system}.redis-insight-bin)
            (gotha.packages.${system}.slack-mcp-server)
            (gotha.packages.${system}.smithy-cli)
          ];
        };
      });
    };
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages