just use open code directly isntead of useless pass through

This commit is contained in:
RingOfStorms (Joshua Bell) 2026-01-09 17:11:20 -06:00
parent 4f0eaddc05
commit cb139caee1
5 changed files with 49 additions and 127 deletions

View file

@ -1,45 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1767364772,
"narHash": "sha256-fFUnEYMla8b7UKjijLnMe+oVFOz6HjijGGNS1l7dYaQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "16c7794d0a28b5a37904d55bcca36003b9109aaa",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"opencode": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1767823467,
"narHash": "sha256-RLTgTjLdPpekYWaNxXRQPBS3phnfBK1LvjSgieKcrfs=",
"owner": "sst",
"repo": "opencode",
"rev": "361a96267334fcfc524cc5377dbbfd7d92254f62",
"type": "github"
},
"original": {
"owner": "sst",
"repo": "opencode",
"type": "github"
}
},
"root": {
"inputs": {
"opencode": "opencode"
}
}
},
"root": "root",
"version": 7
}

View file

@ -1,27 +0,0 @@
{
inputs = {
opencode.url = "github:sst/opencode";
};
outputs =
{ opencode, ... }:
{
nixosModules = {
default =
{
pkgs,
...
}:
{
environment.systemPackages = [
opencode.packages.${pkgs.system}.default
];
environment.shellAliases = {
"oc" = "all_proxy='' http_proxy='' https_proxy='' opencode";
"occ" = "oc -c";
};
};
};
};
}