diff options
author | EuAndreh <eu@euandre.org> | 2021-01-05 13:03:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-05 13:03:30 -0300 |
commit | c12428bcb12e4e0b38e8b28d725a40cbc91a8517 (patch) | |
tree | 5cdf2fb367578038ceba33cdc9d44010ab8e0c68 | |
parent | music/*.ly: Remove whitespaces (diff) | |
download | euandre.org-c12428bcb12e4e0b38e8b28d725a40cbc91a8517.tar.gz euandre.org-c12428bcb12e4e0b38e8b28d725a40cbc91a8517.tar.xz |
Add gitignore rule for generated assets and match with gitignoreSource
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | default.nix | 8 |
2 files changed, 16 insertions, 1 deletions
@@ -6,3 +6,12 @@ /_site/ /.jekyll-cache/ /images/graphviz/ + +# Generated resources +*.ogg +*.torrent +*.checksum +/static/favicon.png +/music/*.pdf +/music/*.midi +/favicon.ico
\ No newline at end of file diff --git a/default.nix b/default.nix index f949982..81429bb 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,13 @@ let niv-sources = import ./nix/sources.nix; pkgs = import niv-sources.nixpkgs { }; - src = pkgs.nix-gitignore.gitignoreSource [ "!.git" ] ./.; + src = pkgs.nix-gitignore.gitignoreSourcePure + [ + "/result*" + "/_site/" + "/.jekyll-cache/" + ] + ./.; utils-i18n = pkgs.callPackage ./nix/utils-i18n.nix { }; pkgs-next = pkgs.callPackage ./nix/nixpkgs-next.nix { }; |