nixos-config/modules/home/programs/terminal/fastfetch/default.nix

11 lines
280 B
Nix

{ pkgs, ... }:
{
programs.fastfetch.enable = true;
home = {
shellAliases.ff = "clear && fastfetch";
packages = with pkgs; [ (writeScriptBin "smallfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
};
xdg.configFile."fastfetch".source = ./configs;
}