{ pkgs, ... } : { home.packages = with pkgs; [ fastfetch ]; programs.fastfetch = { enable = true; settings = { logo = { source = "nixos"; type = "auto"; }; display = { separator = " › "; }; modules = [ "title" "separator" "os" "kernel" "uptime" "packages" "shell" "terminal" "cpu" "gpu" "memory" "swap" "disk" "locale" "localip" "break" "colors" ]; }; }; programs.bash = { enable = true; shellAliases = { fetch = "fastfetch"; }; initExtra = "fetch"; }; }