nushell: add testbed (#1785)

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

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
awwpotato 2025-07-28 03:25:18 -07:00 committed by GitHub
parent e280f272a5
commit 4faa7be903
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 = "nu";
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs.nushell.enable = true;
};
}