11 lines
145 B
Nix
11 lines
145 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
system,
|
|
...
|
|
}: {
|
|
home.file.".config/matugen/config.toml" = {
|
|
source = builtins.toPath ./custom/config.toml;
|
|
};
|
|
}
|