This commit is contained in:
biscuit
2025-05-13 14:30:52 -05:00
parent 61f9633006
commit 2ec607e5c0
3 changed files with 139 additions and 5 deletions
+9 -2
View File
@@ -1,8 +1,15 @@
{ pkgs, ... }: {
{ pkgs , ... }: {
home.packages = [
pkgs.zoxide
pkgs.oh-my-posh
];
programs.zoxide.enable = true;
programs.zoxide.enableZshIntegration = true;
programs.zoxide.options = [];
programs.oh-my-posh.enable = true;
home.file.".config/oh-my-posh/config.omp.json" = {
source = /home/biscuit/Nixos/packages/zoxide/config.omp.json;
force = true;
};
}