feat(git): add .gitignore and pre-commit config to gitignore
This commit is contained in:
parent
52322afe1c
commit
72f9fad9eb
3 changed files with 16 additions and 0 deletions
13
nix/files/gitignore.nix
Normal file
13
nix/files/gitignore.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
perSystem =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
files.files = [
|
||||
{
|
||||
path_ = ".gitignore";
|
||||
drv = pkgs.writeText ".gitignore" config.text.gitignore;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue