Files
nixos/Droidnix/generated/system/applications/terminal_shell/starship.nix
T
2026-03-11 14:41:43 +01:00

18 lines
228 B
Nix

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