Files
nixos/modules/home-manager/oh-my-posh.nix
T
2026-02-28 14:12:26 +01:00

11 lines
144 B
Nix

{ config, pkgs, ... }:
{
programs.oh-my-posh = {
enable = true;
enableZshIntegration = true;
useTheme = "gruvbox";
};
};
}