Files
nixos/Droidnix/generated/system/applications/terminal_shell/starship.nix
T
2026-03-11 14:39:27 +01:00

10 lines
196 B
Nix

{ lib, config, pkgs, ... }:
{
programs.starship = {
enable = true;
# Load your custom starship.toml directly
settings = builtins.readFile ./assets/system/conf/starship.toml;
};
}