nixconfig/home/cli/neofetch/default.nix

11 lines
145 B
Nix
Raw Normal View History

2023-04-12 20:32:07 +02:00
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
neofetch
];
xdg.configFile."neofetch/config.conf".source =./config.conf;
}