dotfiles/home/modules/cli/shell/starship/default.nix
2025-01-31 01:49:36 -06: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;
};
}