Files
nix/modules/home-manager/fastfetch.nix
2025-03-12 12:47:00 +02:00

17 lines
231 B
Nix

{ config, pkgs, ... }:
{
programs.fastfetch = {
enable = true;
settings = {
# Example: Change colors and add custom options
logo = "nixos";
color = "blue";
keyColor = "cyan";
separator = " => ";
};
};
}