working on starship

This commit is contained in:
2026-03-11 14:41:04 +01:00
parent 09e4b1e2b1
commit c2315c04ce
@@ -1,9 +1,10 @@
{ lib, config, pkgs, ... }:
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;
# Load your custom starship.toml directly
settings = builtins.readFile ./assets/system/conf/starship.toml;
settings = starshipConfig;
};
}