Remove OS icon from prompt

This commit is contained in:
Andrea Ciceri 2025-05-16 16:03:13 +02:00
parent cc3a0012b5
commit 39b276d691
No known key found for this signature in database
2 changed files with 67 additions and 1 deletions

View file

@ -84,7 +84,12 @@
programs.thefuck.enable = true;
programs.oh-my-posh = {
enable = true;
useTheme = "catppuccin_mocha";
# same as "captuccin_mocha" but without the OS logo
settings = lib.mkForce (
builtins.fromJSON (
builtins.unsafeDiscardStringContext (builtins.readFile ./catppuccin_mocha.omp.json)
)
);
};
programs.zellij.enableBashIntegration = false;