dotfiles/modules/home/cli/shell/starship/default.nix

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;
};
}