Compare commits

..

2 commits

Author SHA1 Message Date
sid
0c13e9dabd Merge pull request 'update flake. update pkgs. new hp api' (#18) from develop into release-25.11
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 30s
Reviewed-on: #18
2026-04-15 22:28:56 +02:00
sid
b29b0895a5 update flake. update pkgs. new hp api
All checks were successful
Build tests / build-hosts (pull_request) Successful in 3m51s
Flake check / flake-check (pull_request) Successful in 3m50s
2026-04-15 22:23:01 +02:00
8 changed files with 33 additions and 33 deletions

View file

@ -19,7 +19,7 @@ Provide the following entries to your `secrets.yaml`:
```yaml
headplane:
cookie_secret: abc123
agent_pre_authkey: abc123
api_key: abc123
```
Generate your cookie secret with:
@ -28,7 +28,7 @@ Generate your cookie secret with:
nix-shell -p openssl --run "openssl rand -hex 16"
```
Generate your agent pre-authkey with:
Generate your agent `api_key` with:
```bash
sudo headscale users create headplane-agent

36
flake.lock generated
View file

@ -202,11 +202,11 @@
},
"flake-schemas": {
"locked": {
"lastModified": 1770913512,
"narHash": "sha256-jRC1qRoRCrMjDalVfUMHFlKSkkA2q0RZWTDW0LsquoA=",
"lastModified": 1775244557,
"narHash": "sha256-iYXRXIX9eafJmwJFAhqT3YxvvpNRuPFSLRCSpvGh8Ic=",
"owner": "DeterminateSystems",
"repo": "flake-schemas",
"rev": "3c464b0e09cb44c6e073c41dd1d834980c3e0b24",
"rev": "15edbeeaf77e42216dbcba8bfd907fdeabb75a2b",
"type": "github"
},
"original": {
@ -258,11 +258,11 @@
]
},
"locked": {
"lastModified": 1772024342,
"narHash": "sha256-+eXlIc4/7dE6EcPs9a2DaSY3fTA9AE526hGqkNID3Wg=",
"lastModified": 1775585728,
"narHash": "sha256-8Psjt+TWvE4thRKktJsXfR6PA/fWWsZ04DVaY6PUhr4=",
"owner": "cachix",
"repo": "git-hooks.nix",
"rev": "6e34e97ed9788b17796ee43ccdbaf871a5c2b476",
"rev": "580633fa3fe5fc0379905986543fd7495481913d",
"type": "github"
},
"original": {
@ -349,11 +349,11 @@
]
},
"locked": {
"lastModified": 1772020340,
"narHash": "sha256-aqBl3GNpCadMoJ/hVkWTijM1Aeilc278MjM+LA3jK6g=",
"lastModified": 1775425411,
"narHash": "sha256-KY6HsebJHEe5nHOWP7ur09mb0drGxYSzE3rQxy62rJo=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "36e38ca0d9afe4c55405fdf22179a5212243eecc",
"rev": "0d02ec1d0a05f88ef9e74b516842900c41f0f2fe",
"type": "github"
},
"original": {
@ -465,11 +465,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1771903837,
"narHash": "sha256-sdaqdnsQCv3iifzxwB22tUwN/fSHoN7j2myFW5EIkGk=",
"lastModified": 1776067740,
"narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e764fc9a405871f1f6ca3d1394fb422e0a0c3951",
"rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f",
"type": "github"
},
"original": {
@ -511,11 +511,11 @@
]
},
"locked": {
"lastModified": 1772140017,
"narHash": "sha256-wFUc9tn5Ik11oL009BkVnj4NxsY63UbZjhOyEqCsIQE=",
"lastModified": 1776282709,
"narHash": "sha256-T2pc27MdV3/ejCYiv24lu7tNjPmd9t6jx+RG6RYvcRQ=",
"owner": "nix-community",
"repo": "NUR",
"rev": "be0fea0af0e8cfadb3995dd7bb3a167bc012e935",
"rev": "55f8cf0c3aa3e144cdb158a2f1de505af0b26c54",
"type": "github"
},
"original": {
@ -605,11 +605,11 @@
"tinted-zed": "tinted-zed"
},
"locked": {
"lastModified": 1771788390,
"narHash": "sha256-RzBpBwn93GWxLjacTte+ngwwg0L/BVOg4G/sSIeK3Rw=",
"lastModified": 1775935110,
"narHash": "sha256-twTHKUFXjNNsaAvX0KoaIClt+923jXDRbfCd9PC/f0o=",
"owner": "nix-community",
"repo": "stylix",
"rev": "ebb238f14d6f930068be4718472da3105fd5d3bf",
"rev": "14f248ad1a7668e7858c6d9163608c208b7daf02",
"type": "github"
},
"original": {

View file

@ -45,10 +45,10 @@ in
url = "http://127.0.0.1:${toString headscale.port}";
public_url = headscale.settings.server_url;
config_path = "/etc/headscale/config.yaml";
api_key_path = config.sops.secrets."headplane/api_key".path;
};
integration.agent = {
enabled = mkDefault true;
pre_authkey_path = config.sops.secrets."headplane/agent_pre_authkey".path;
};
};
};
@ -70,7 +70,7 @@ in
"headplane/cookie_secret" = {
inherit owner group mode;
};
"headplane/agent_pre_authkey" = {
"headplane/api_key" = {
inherit owner group mode;
};
};

View file

@ -6,13 +6,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "arxiv-mcp-server";
version = "0.3.1";
version = "0.4.11";
pyproject = true;
src = fetchPypi {
pname = "arxiv_mcp_server";
inherit version;
hash = "sha256-yGNetU7el6ZXsavD8uvO17OZtaPuYgzkxiVEk402GUs=";
hash = "sha256-FIOQs+sUdoUvbmCrL0oNlkmHI2lwygNOyFz4fsD14Hg=";
};
build-system = [

View file

@ -11,17 +11,17 @@
rustPlatform.buildRustPackage rec {
pname = "baibot";
version = "1.14.3";
version = "1.18.0";
src = fetchFromGitHub {
owner = "etkecc";
repo = "baibot";
rev = "v${version}";
hash = "sha256-bFUijsvwUQhISjWVoVvoDXNSDPaWZTunqUfxfgaxclM=";
hash = "sha256-TwtN8tEml/z0Js78jjWzEYV58Dg8a5YKxdEU9hBDtNs=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-/7KSCVWuxTk7gKOYxE/uQ5T0BnYlDYWOvdFXEiU9mB0=";
cargoHash = "sha256-2TJsFT+I7JG1DauEOvB8HluMDb1vW0qXD/mzzSlAfew=";
nativeBuildInputs = [
pkg-config

View file

@ -6,13 +6,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "blender-mcp";
version = "1.5.5";
version = "1.5.6";
pyproject = true;
src = fetchPypi {
pname = "blender_mcp";
inherit version;
hash = "sha256-n8bYnrDVLe5zPvg8rbGgh5U5AeIm/DA6aPgmxS68d7g=";
hash = "sha256-9aBGQcMC1ustj3H1WgRFCha6fk+XSASIzcZr6Rrgif4=";
};
build-system = [

View file

@ -6,13 +6,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "freecad-mcp";
version = "0.1.16";
version = "0.1.17";
pyproject = true;
src = fetchPypi {
pname = "freecad_mcp";
inherit version;
hash = "sha256-eFt7UgJw56C2zY8Vznrg8L0a5nvP0xtiW1oJuJ/fL3Y=";
hash = "sha256-DugQWGZizIXO27cjzfyidNTyyahN1BTcDNTl4DHWqN0=";
};
build-system = [

View file

@ -7,14 +7,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "mcpo";
version = "0.0.19";
version = "0.0.20";
pyproject = true;
src = fetchFromGitHub {
owner = "open-webui";
repo = "mcpo";
rev = "v${version}";
hash = "sha256-ZfTVMrXXEsEKHmeG4850Hq3MEpQA/3WMpAVZS0zvp1I=";
hash = "sha256-tA1KdcfmNPuqPbwE66jRY85tsrOKjPImsxSoGsW5ZD4=";
};
build-system = [