13 lines
217 B
Nix
13 lines
217 B
Nix
{ config, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
files.files = [
|
|
{
|
|
path_ = ".gitignore";
|
|
drv = pkgs.writeText ".gitignore" config.text.gitignore;
|
|
}
|
|
];
|
|
};
|
|
}
|