dotfiles/home/modules/starship/default.nix

21 lines
242 B
Nix
Raw Normal View History

2024-11-20 17:47:07 -06:00
{
2024-12-19 19:56:45 -06:00
flake,
lib,
...
2025-01-18 03:50:54 -06:00
}:
let
2025-01-08 01:05:45 -06:00
configPath = ./config;
settingsPath = import (configPath + /settings.nix) {
2025-01-08 19:06:14 -06:00
inherit
flake
lib
;
2025-01-08 01:05:45 -06:00
};
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
}