dotfiles/modules/home/cli/shell/starship/default.nix
2025-03-29 23:08:26 -05:00

16 lines
234 B
Nix
Executable file

{
flake,
config,
lib,
...
}:
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) { inherit config flake lib; };
in
{
programs.starship = {
enable = true;
settings = settingsPath;
};
}