mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
17 lines
234 B
Nix
17 lines
234 B
Nix
![]() |
{
|
||
|
flake,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
configPath = ./config;
|
||
|
settingsPath = import (configPath + /settings.nix) { inherit config flake lib; };
|
||
|
in
|
||
|
{
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
settings = settingsPath;
|
||
|
};
|
||
|
}
|