fastfetch config for zsh init

This commit is contained in:
2026-02-01 21:54:16 +01:00
parent 1a5b256f23
commit 1577f066b2
2 changed files with 16 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
{ pkgs, ... }:
{
home.file.".zsh/fastfetch.jsonc".source =
./fastfetch/config.jsonc;
programs.zsh = {
enable = true;
oh-my-zsh = {
@@ -16,7 +19,7 @@
# Run fastfetch
if command -v fastfetch >/dev/null 2>&1; then
fastfetch --logo none
fastfetch --logo none --config ~/.zsh/fastfetch.jsonc
fi
'';