17 lines
224 B
Nix
17 lines
224 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
flakeRoot,
|
|
...
|
|
}:
|
|
let
|
|
starshipConfig = lib.importTOML (flakeRoot + "/assets/system/conf/starship.toml");
|
|
in
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = starshipConfig;
|
|
};
|
|
}
|