13 lines
275 B
Nix
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;
|
|
};
|
|
}
|