liminalOS/users/youwen/common/fastfetch/default.nix

9 lines
224 B
Nix
Raw Normal View History

2024-10-29 20:33:10 -07:00
{ pkgs, ... }:
{
home.file.".config/fastfetch/config.jsonc".source = ./config.jsonc;
home.file.".local/share/fastfetch/images/nixos-logo.png".source = ./nixos-logo.png;
programs.fastfetch = {
enable = true;
};
}