nixos/flake.nix

16 lines
395 B
Nix
Raw Normal View History

2025-12-07 22:57:38 -05:00
{
inputs = {
2026-04-26 16:09:24 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2025-12-07 22:57:38 -05:00
2026-04-26 16:09:24 +00:00
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
2025-12-11 23:46:49 +00:00
2026-04-26 16:09:24 +00:00
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
2025-12-07 22:57:38 -05:00
};
2026-04-26 16:09:24 +00:00
# import modules/ automatically
outputs = inputs: inputs.flake-parts.lib.mkFlake
{inherit inputs;}
(inputs.import-tree ./modules);
2025-12-07 22:57:38 -05:00
}