9 lines
159 B
Nix
9 lines
159 B
Nix
{ pkgs, user, ... }:
|
|
{
|
|
|
|
home-manager.users.${user}.home.file.".config/neofetch/config.conf" = {
|
|
enable = true;
|
|
source = ../opt/neofetch.conf;
|
|
};
|
|
}
|