Files
nixos/Droidnix/generated/modules/terminals/starship.nix
T
2026-03-19 08:37:05 +00:00

16 lines
200 B
Nix

{
lib,
config,
pkgs,
...
}:
let
starshipConfig = lib.importTOML ("./assets/system/conf/starship.toml");
in
{
programs.starship = {
enable = true;
settings = starshipConfig;
};
}