Add nono sandbox for AI agents
This commit is contained in:
17
flake.lock
generated
17
flake.lock
generated
@@ -548,6 +548,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nono": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1770047555,
|
||||||
|
"narHash": "sha256-BL1lBZYs6bsjk/+g+Zc2lUjErlvgYYJQqYEKLUjvtVU=",
|
||||||
|
"owner": "lukehinds",
|
||||||
|
"repo": "nono",
|
||||||
|
"rev": "8d382fbc0b21ad06d255a97000d876c15b5dea09",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "lukehinds",
|
||||||
|
"repo": "nono",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"colmena": "colmena",
|
"colmena": "colmena",
|
||||||
@@ -564,6 +580,7 @@
|
|||||||
"nix-homebrew": "nix-homebrew",
|
"nix-homebrew": "nix-homebrew",
|
||||||
"nixpkgs": "nixpkgs_3",
|
"nixpkgs": "nixpkgs_3",
|
||||||
"nixvim": "nixvim",
|
"nixvim": "nixvim",
|
||||||
|
"nono": "nono",
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"zjstatus": "zjstatus"
|
"zjstatus": "zjstatus"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,6 +45,10 @@
|
|||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
jj-starship.url = "github:dmmulroy/jj-starship";
|
jj-starship.url = "github:dmmulroy/jj-starship";
|
||||||
|
nono = {
|
||||||
|
url = "github:lukehinds/nono";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ {flake-parts, ...}:
|
outputs = inputs @ {flake-parts, ...}:
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
../../profiles/lazygit.nix
|
../../profiles/lazygit.nix
|
||||||
../../profiles/lumen.nix
|
../../profiles/lumen.nix
|
||||||
../../profiles/mise.nix
|
../../profiles/mise.nix
|
||||||
|
../../profiles/nono.nix
|
||||||
../../profiles/neovim
|
../../profiles/neovim
|
||||||
../../profiles/opencode.nix
|
../../profiles/opencode.nix
|
||||||
../../profiles/ripgrep.nix
|
../../profiles/ripgrep.nix
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
../../profiles/lazygit.nix
|
../../profiles/lazygit.nix
|
||||||
../../profiles/lumen.nix
|
../../profiles/lumen.nix
|
||||||
../../profiles/mise.nix
|
../../profiles/mise.nix
|
||||||
|
../../profiles/nono.nix
|
||||||
../../profiles/neovim
|
../../profiles/neovim
|
||||||
../../profiles/opencode.nix
|
../../profiles/opencode.nix
|
||||||
../../profiles/ripgrep.nix
|
../../profiles/ripgrep.nix
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
../../profiles/lazygit.nix
|
../../profiles/lazygit.nix
|
||||||
../../profiles/lumen.nix
|
../../profiles/lumen.nix
|
||||||
../../profiles/mise.nix
|
../../profiles/mise.nix
|
||||||
|
../../profiles/nono.nix
|
||||||
../../profiles/neovim
|
../../profiles/neovim
|
||||||
../../profiles/opencode.nix
|
../../profiles/opencode.nix
|
||||||
../../profiles/ripgrep.nix
|
../../profiles/ripgrep.nix
|
||||||
|
|||||||
18
overlays/nono.nix
Normal file
18
overlays/nono.nix
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{inputs}: final: prev: let
|
||||||
|
manifest = (prev.lib.importTOML "${inputs.nono}/Cargo.toml").package;
|
||||||
|
in {
|
||||||
|
nono = prev.rustPlatform.buildRustPackage {
|
||||||
|
pname = manifest.name;
|
||||||
|
version = manifest.version;
|
||||||
|
|
||||||
|
cargoLock.lockFile = "${inputs.nono}/Cargo.lock";
|
||||||
|
|
||||||
|
src = inputs.nono;
|
||||||
|
|
||||||
|
nativeBuildInputs = with prev; [pkg-config];
|
||||||
|
buildInputs = with prev; [openssl dbus];
|
||||||
|
OPENSSL_NO_VENDOR = 1;
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
};
|
||||||
|
}
|
||||||
5
profiles/nono.nix
Normal file
5
profiles/nono.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
nono
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user