11.stylix/modules/starship/testbeds/default.nix
2025-05-10 11:28:48 -07:00

21 lines
415 B
Nix

{ lib, pkgs, ... }:
{
stylix.testbed.ui.command = {
text = lib.getExe pkgs.bashInteractive;
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs = {
starship = {
enable = true;
package = pkgs.starship;
enableBashIntegration = true;
};
bash = {
enable = true;
package = pkgs.bashInteractive;
};
};
};
}