flocon/modules/hm/programs/terminal/shell/starship.nix

16 lines
241 B
Nix
Raw Normal View History

{
lib,
osConfig,
...
}: {
config = lib.mkIf osConfig.local.profiles.desktop.enable {
programs.starship = {
enable = true;
enableTransience = true;
settings = {
add_newline = true;
};
};
};
}