init: gig, because gitignores are boring

This commit is contained in:
Teesh 2026-02-11 22:16:04 +02:00
commit ee7171a766
12 changed files with 1449 additions and 0 deletions

13
flake.nix Normal file
View file

@ -0,0 +1,13 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;}
(inputs.import-tree ./packages/nix);
}