mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
16 lines
216 B
Nix
Executable file
16 lines
216 B
Nix
Executable file
{
|
|
flake,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.starship = let
|
|
configPath = ./config;
|
|
in
|
|
{
|
|
enable = true;
|
|
}
|
|
// (import (configPath + /settings.nix) {
|
|
inherit flake;
|
|
inherit lib;
|
|
});
|
|
}
|