snowflake/home/neofetch/default.nix

11 lines
145 B
Nix
Raw Normal View History

2023-03-19 15:10:30 -04:00
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
neofetch
];
xdg.configFile."neofetch/config.conf".source =./config.conf;
}