NixOS-Config/modules/home/programs/terminal/fastfetch/small/default.nix

8 lines
215 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home = {
2024-11-24 20:02:09 -05:00
packages = with pkgs; [ (pkgs.writeScriptBin "pfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
file.".config/fastfetch/small.jsonc".source = ./small.jsonc;
};
}