fixing stuff and updating
This commit is contained in:
10
README.md
10
README.md
@@ -23,16 +23,16 @@ Add this flake to your inputs and apply the overlay:
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
mcp.url = "github:YOUR-USERNAME/mcp"; # Update with your repo
|
||||
mcp-servers.url = "git+ssh://gitea@gitea.bueso.eu/luis/mcp-servert";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, mcp, ... }: {
|
||||
outputs = { nixpkgs, mcp-servers, ... }: {
|
||||
# Apply the overlay to get packages in pkgs
|
||||
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
{
|
||||
nixpkgs.overlays = [ mcp.overlays.default ];
|
||||
nixpkgs.overlays = [ mcp-servers.overlays.default ];
|
||||
}
|
||||
# Now you can use pkgs.manim-mcp-server
|
||||
];
|
||||
@@ -47,9 +47,9 @@ Access packages without the overlay:
|
||||
|
||||
```nix
|
||||
{
|
||||
inputs.mcp.url = "github:YOUR-USERNAME/mcp";
|
||||
mcp-servers.url = "git+ssh://gitea@gitea.bueso.eu/luis/mcp-servert";
|
||||
|
||||
outputs = { mcp, ... }: {
|
||||
outputs = { mcp-servers, ... }: {
|
||||
# Access directly
|
||||
myPackage = mcp.packages.x86_64-linux.manim-mcp-server;
|
||||
};
|
||||
|
||||
21
flake.lock
generated
21
flake.lock
generated
@@ -82,14 +82,17 @@
|
||||
"nixpkgs": "nixpkgs_2"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1770196904,
|
||||
"narHash": "sha256-nV2Sq7+y9ocPln5+zLVjV5cvE4E4i7J6TR88OnIPQdA=",
|
||||
"path": "/conf/jailed-agents",
|
||||
"type": "path"
|
||||
"lastModified": 1770110471,
|
||||
"narHash": "sha256-oAbwoCzhq/skEKzaPTtzCh1Eix2fwfsE2aJmpJZZhx8=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "9cfc57d6a605466ed9a359abcaee86b4ec9f62e0",
|
||||
"revCount": 2,
|
||||
"type": "git",
|
||||
"url": "ssh://gitea@gitea.bueso.eu/luis/jailed-agents"
|
||||
},
|
||||
"original": {
|
||||
"path": "/conf/jailed-agents",
|
||||
"type": "path"
|
||||
"type": "git",
|
||||
"url": "ssh://gitea@gitea.bueso.eu/luis/jailed-agents"
|
||||
}
|
||||
},
|
||||
"llm-agents": {
|
||||
@@ -146,11 +149,11 @@
|
||||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1770115704,
|
||||
"narHash": "sha256-KHFT9UWOF2yRPlAnSXQJh6uVcgNcWlFqqiAZ7OVlHNc=",
|
||||
"lastModified": 1770181073,
|
||||
"narHash": "sha256-ksTL7P9QC1WfZasNlaAdLOzqD8x5EPyods69YBqxSfk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e6eae2ee2110f3d31110d5c222cd395303343b08",
|
||||
"rev": "bf922a59c5c9998a6584645f7d0de689512e444c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
jailed-agents.url = "path:/conf/jailed-agents";
|
||||
jailed-agents.url = "git+ssh://gitea@gitea.bueso.eu/luis/jailed-agents";
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
# Usage in a flake:
|
||||
# {
|
||||
# inputs.mcp.url = "github:your-user/mcp";
|
||||
# inputs.mcp.url = "gitea@gitea.bueso.eu:luis/mcp-servers.git";
|
||||
#
|
||||
# outputs = { nixpkgs, mcp, ... }: {
|
||||
# # Apply the overlay
|
||||
|
||||
Reference in New Issue
Block a user