From 2a105896a9b0b42a933332ccc0abc6f9244d595a Mon Sep 17 00:00:00 2001 From: FredzyW Date: Fri, 14 Jun 2024 21:31:42 +0200 Subject: [PATCH] Added oh my posh --- moduler/common/oh-my-posh.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 moduler/common/oh-my-posh.nix diff --git a/moduler/common/oh-my-posh.nix b/moduler/common/oh-my-posh.nix new file mode 100644 index 0000000..9730bf5 --- /dev/null +++ b/moduler/common/oh-my-posh.nix @@ -0,0 +1,8 @@ +{ pkgs, lib, ... }: +{ + programs.oh-my-posh = { + enable = true; + enableFishIntegration = true; + useTheme = "catppuccin_macchiato"; + }; +}