dotnix/apps/nogui/oh-my-posh.nix

9 lines
181 B
Nix
Raw Normal View History

2023-06-28 20:48:01 +00:00
{
programs.oh-my-posh = {
enable = true;
settings = builtins.fromJSON (
builtins.unsafeDiscardStringContext (builtins.readFile ./ohmyposh/config.json)
);
2023-06-28 20:48:01 +00:00
};
}