This commit is contained in:
2026-07-12 15:25:55 -03:00
commit 29377d0c9a
160 changed files with 6138 additions and 0 deletions
@@ -0,0 +1,23 @@
{
inputs,
lib,
config,
pkgs,
...
}:
{
options.custom = {
oh-my-posh.enable = lib.mkEnableOption "enable oh-my-posh prompt decorator";
};
config = lib.mkIf config.custom.oh-my-posh.enable {
programs.oh-my-posh = {
enable = true;
enableZshIntegration = true;
settings = builtins.fromJSON (builtins.readFile ./oh-my-posh.omp.json);
};
};
}