Skip to repository content40 lines · 952 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-27T22:40:33.249Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
flake.nix
1{
2 description = "Zed is a minimal code editor crafted for speed and collaboration with humans and AI.";
3
4 inputs = {
5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6 flake-parts.url = "github:hercules-ci/flake-parts";
7 crane.url = "github:ipetkov/crane";
8 rust-overlay = {
9 url = "github:oxalica/rust-overlay";
10 inputs.nixpkgs.follows = "nixpkgs";
11 };
12 };
13
14 outputs =
15 inputs@{ flake-parts, ... }:
16 flake-parts.lib.mkFlake { inherit inputs; } {
17 systems = [
18 "x86_64-linux"
19 "x86_64-darwin"
20 "aarch64-linux"
21 "aarch64-darwin"
22 ];
23
24 imports = [
25 ./nix/modules/overlays.nix
26 ./nix/modules/packages.nix
27 ./nix/modules/partitions.nix
28 ];
29 };
30
31 nixConfig = {
32 extra-substituters = [
33 "https://zed.cachix.org"
34 ];
35 extra-trusted-public-keys = [
36 "zed.cachix.org-1:/pHQ6dpMsAZk2DiP4WCL0p9YDNKWj2Q5FL20bNmw1cU="
37 ];
38 };
39}
40