11 lines
268 B
Nix
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);
|
||
|
};
|
||
|
}
|