nixos-config/homes/common/oh-my-posh/default.nix
Ingolf Wagner 161486b887
Some checks failed
Build all NixOS Configurations / nix build (push) Failing after 6s
fix fonts and oh-my-posh
2024-08-11 21:09:53 +02:00

11 lines
268 B
Nix

{ 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);
};
}