10 lines
196 B
Nix
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;
|
|
};
|
|
}
|