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

17 lines
234 B
Nix
Raw Normal View History

2024-11-20 17:47:07 -06:00
{
2024-12-19 19:56:45 -06:00
flake,
2025-01-31 01:49:36 -06:00
config,
2024-12-19 19:56:45 -06:00
lib,
...
2025-01-18 03:50:54 -06:00
}:
let
2025-01-08 01:05:45 -06:00
configPath = ./config;
2025-01-31 01:49:36 -06:00
settingsPath = import (configPath + /settings.nix) { inherit config flake lib; };
2025-01-18 03:50:54 -06:00
in
{
2025-01-08 01:05:45 -06:00
programs.starship = {
enable = true;
settings = settingsPath;
};
2024-11-20 17:47:07 -06:00
}