Link: https://github.com/nix-community/stylix/pull/1945 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
11 lines
212 B
Nix
11 lines
212 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
stylix.testbed.ui.command = {
|
|
text = lib.getExe pkgs.opencode;
|
|
useTerminal = true;
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
programs.opencode.enable = true;
|
|
};
|
|
}
|