Compare commits

..
2 changed files with 21 additions and 25 deletions

38
flake.lock generated
View file

@ -380,11 +380,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785235351, "lastModified": 1785139861,
"narHash": "sha256-ASEwZAGzjuG1DxuVDvr2OpFNVoZJjtNAecRjPH88ahM=", "narHash": "sha256-Ua1nyDpMgWdC6wIx8Damb+5itPw1XdBgH85mKtJhZa8=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "be27a62fb118f6d7d3c094b1c6c5ebacd8ae5fd7", "rev": "80650041d91c6126125e9c73da33a585d32d3bd1",
"revCount": 3019, "revCount": 2965,
"type": "git", "type": "git",
"url": "https://forge.darkest.space/hyperhive/hyperhive.git" "url": "https://forge.darkest.space/hyperhive/hyperhive.git"
}, },
@ -546,11 +546,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785295339, "lastModified": 1785123958,
"narHash": "sha256-p0/gBGqW0SzC+bDmL8nWEWI5+eYtEEndPJh4vJ/hcI4=", "narHash": "sha256-aA8MsHUcw/s65gGVhp1B/0OdnFIQDqnWXdL4g5UIAjs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-vscode-extensions", "repo": "nix-vscode-extensions",
"rev": "8252e4efcda9fe5f28888bedc8075d8e8b9a03ea", "rev": "bced02518f7bfc62084db783c19e527541a44b53",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -661,11 +661,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1785301185, "lastModified": 1785110946,
"narHash": "sha256-eoS3KQTO0aPWXZvIaRbRAzSSHW3l5wdMFXtT1ISfoKA=", "narHash": "sha256-WWuWxmXKzGZWryswWlijP3Mjp6aGy4Ngmeil5nGMMjk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9bc02893134c733dd85de46ee4fb2fac696b5529", "rev": "d3498f786f97ac0bded21b34bae0bf3809b45aa3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -677,11 +677,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1785133411, "lastModified": 1785104993,
"narHash": "sha256-Yjv0WEg39KRYS0rBdTbu6Fc/or/ihAKk13W9sQ6VWd0=", "narHash": "sha256-eKbrvPoAOFutbYMdbB3r5EQVmFxKv24iKqHPPUXA0gM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2f5a153c270b70cb0f8c11f46d96d6d3bc39f4e3", "rev": "8623c4c20aa4ca2f5fb81510d2944066c3fb0d96",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -722,11 +722,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785318841, "lastModified": 1785138165,
"narHash": "sha256-j8EgCCHVP7MJtvOCzWT48ecRdIXI6AcS7m3rZl41jNY=", "narHash": "sha256-JMQ1L59Z4M0KPKou9gS+rbYYhGEXIGtdPTX0kbbRx2o=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "af39ff2b7f897167456c26d49c93d721be0bbc0a", "rev": "15544328ef656ca54155e43fc73fb664e5b993c8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1089,11 +1089,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785307877, "lastModified": 1785098705,
"narHash": "sha256-Kpx9uVvdAUbdQwnggxKjxKmiDXaQQKyU58O0x969i3s=", "narHash": "sha256-rRlSmihiLwPR3S7gtCo4a+UiiMQGrPpq+yMkWNgP7k8=",
"owner": "vibec0re", "owner": "vibec0re",
"repo": "trollshell", "repo": "trollshell",
"rev": "035488aaf25679af79385fb5eb40d6c1cc785831", "rev": "e8b47086000b15177fdad316010613e1d05634d9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,6 +1,5 @@
{ {
hyperhive, hyperhive,
pkgs,
lib, lib,
config, config,
... ...
@ -41,10 +40,7 @@ in
endpoint = "https://exponentials.vibec0re.mov/otel"; endpoint = "https://exponentials.vibec0re.mov/otel";
headersCredential = "/etc/hyperhive/otel-cred"; headersCredential = "/etc/hyperhive/otel-cred";
}; };
c0re = { c0re.adminUsers = ["muede"];
adminUsers = ["muede"]; c0re.agentMemoryMax = "6G";
agentMemoryMax = "6G";
claudeCodePackage = pkgs.unstable.claude-code;
};
}; };
} }