Files
nixos/Droidnix/generated/modules/terminals/starship.nix
T
2026-03-22 15:25:08 +00:00

13 lines
275 B
Nix

{ config, pkgs, lib, flakeRoot, ... }:
{
xdg.enable = true;
programs.starship = {
enable = true; # turns on starship integration for supported shells
# Optional extra options you want to keep
transientPrompt = true;
interactiveOnly = false;
};
}