11.stylix/modules/starship/testbed.nix
Chet Luther 968f13d470
starship: init (#995)
Closes: https://github.com/danth/stylix/issues/301
Link: https://github.com/danth/stylix/pull/995

Reviewed-by: awwpotato <153149335+awwpotato@users.noreply.github.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-03-19 18:37:25 +01:00

26 lines
507 B
Nix

{ lib, pkgs, ... }:
{
stylix.testbed.application = {
enable = true;
name = "Alacritty";
package = pkgs.alacritty;
};
home-manager.sharedModules = lib.singleton {
programs = {
alacritty = {
enable = true;
package = pkgs.alacritty;
};
bash = {
enable = true;
package = pkgs.bashInteractive;
};
starship = {
enable = true;
package = pkgs.starship;
enableBashIntegration = true;
};
};
};
}