nixos-config/homes/common/oh-my-posh/default.nix

11 lines
268 B
Nix
Raw Normal View History

2024-08-11 21:01:34 +02:00
{ 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);
};
}