9 lines
128 B
Nix
9 lines
128 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
xdg.configFile = {
|
|
"neofetch/config.conf" = {
|
|
source = ./config/config.conf;
|
|
};
|
|
};
|
|
}
|