main
1{
2 inputs,
3 lib,
4 ...
5}: {
6 flake.modules.homeManager."hosts/kevin" = {config, ...}: {
7 programs.fastfetch.settings.logo = lib.mkIf config.programs.fastfetch.enable (lib.mkForce {
8 type = "kitty-direct";
9 source = "${inputs.nixos-logo}/nixos-griseo.png";
10 width = 28;
11 height = 14;
12 });
13 };
14}