dotfiles/home/modules/starship/default.nix

17 lines
216 B
Nix
Raw Normal View History

2024-11-20 17:47:07 -06:00
{
2024-12-19 19:56:45 -06:00
flake,
lib,
...
}: {
2024-11-20 17:47:07 -06:00
programs.starship = let
configPath = ./config;
in
{
enable = true;
}
2024-12-19 19:56:45 -06:00
// (import (configPath + /settings.nix) {
inherit flake;
inherit lib;
});
2024-11-20 17:47:07 -06:00
}