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

6 lines
202 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home.packages = with pkgs; [ (pkgs.writeScriptBin "pfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
xdg.configFile."fastfetch/small.jsonc".source = ./small.jsonc;
}