mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
12 lines
211 B
Nix
12 lines
211 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.fastfetch.enable {
|
|
home.packages = [pkgs.fastfetch];
|
|
xdg.configFile."fastfetch/config.jsonc".source = ./config.jsonc;
|
|
};
|
|
}
|