opencode: init (#1945)

Link: https://github.com/nix-community/stylix/pull/1945

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Mirza Arnaut 2025-10-21 08:40:16 +02:00 committed by GitHub
parent 8d008296a1
commit b81dc0a385
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 249 additions and 3 deletions

View file

@ -0,0 +1,11 @@
{ lib, pkgs, ... }:
{
stylix.testbed.ui.command = {
text = lib.getExe pkgs.opencode;
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs.opencode.enable = true;
};
}