11 lines
248 B
Nix
11 lines
248 B
Nix
let
|
|
flakeRoot = getFlake "/path/to/your/flake/root"; # e.g., ~/Droidnix
|
|
starshipConfig = builtins.readFile (flakeRoot + "/assets/system/conf/starship.toml");
|
|
in
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = starshipConfig;
|
|
};
|
|
}
|