Initial working config.

This commit is contained in:
2026-02-13 13:16:48 -06:00
commit f1c627e392
6 changed files with 323 additions and 0 deletions

12
flake.nix Normal file
View File

@@ -0,0 +1,12 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
wrappers.url = "github:Lassulus/wrappers";
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 ./modules);
}