zellij: add testbed (#1773)

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

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
awwpotato 2025-07-27 10:45:07 -07:00 committed by GitHub
parent 4606c3e1b5
commit e6d25946f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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