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

13 lines
216 B
Nix

{ config, pkgs, lib, flakeRoot, ... }:
{
xdg.enable = true;
programs.starship = {
enable = true;
enableZshIntegration = true;
enableBashIntegration = true;
enableFishIntegration = true;
};
}