feat: remove exept opencode and lmstudio
This commit is contained in:
parent
dd06e6fecd
commit
79ca596b55
3 changed files with 9 additions and 155 deletions
53
flake.nix
53
flake.nix
|
|
@ -18,14 +18,6 @@
|
|||
url = "github:nix-community/NUR";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
claude-code-overlay = {
|
||||
url = "github:ryoppippi/claude-code-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
codex-cli-nix = {
|
||||
url = "github:sadjow/codex-cli-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
|
@ -36,50 +28,6 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
packages.x86_64-linux =
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
t3Version = "0.0.15";
|
||||
t3App = pkgs.appimageTools.wrapType2 rec {
|
||||
pname = "t3";
|
||||
version = t3Version;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/pingdotgg/t3code/releases/download/v${version}/T3-Code-${version}-x86_64.AppImage";
|
||||
hash = "sha256:67ccbb4961f9e7e642edc469828d1c746dbbdeb6c38854b7a5742ddeea7bb038";
|
||||
};
|
||||
|
||||
extraPkgs = pkgs: [ pkgs.xdg-utils ];
|
||||
};
|
||||
t3Icon = pkgs.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/pingdotgg/t3code/v${t3Version}/apps/desktop/resources/icon.png";
|
||||
hash = "sha256-rXMAXnje7dOKxoqQ/G16Ohub9A54IPhhlv9x1/aKcvw=";
|
||||
};
|
||||
t3Desktop = pkgs.makeDesktopItem {
|
||||
name = "t3-code";
|
||||
desktopName = "T3 Code";
|
||||
genericName = "AI Coding Assistant";
|
||||
exec = "t3 %U";
|
||||
icon = "${t3Icon}";
|
||||
terminal = false;
|
||||
categories = [
|
||||
"Development"
|
||||
"IDE"
|
||||
];
|
||||
startupNotify = true;
|
||||
comment = "Launch T3 Code from the GitHub release AppImage";
|
||||
};
|
||||
in
|
||||
{
|
||||
t3code = pkgs.symlinkJoin {
|
||||
name = "t3code-${t3Version}";
|
||||
paths = [
|
||||
t3App
|
||||
t3Desktop
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
|
||||
nixosConfigurations = {
|
||||
framework = nixpkgs.lib.nixosSystem {
|
||||
|
|
@ -99,7 +47,6 @@
|
|||
{
|
||||
nixpkgs.overlays = [
|
||||
inputs.nur.overlays.default
|
||||
inputs.claude-code-overlay.overlays.default
|
||||
];
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue