{
  pkgs,
  config,
  lib,
  ...
}:
with lib;
{
  programs.oh-my-posh = {
    enable = true;
    # https://ohmyposh.dev/docs/themes
    #useTheme = "gmay"; # ganz nice, aber farben sind ein bisl schrill
    settings = builtins.fromJSON (builtins.readFile ./gmay.json);
  };
}