nixos/flake.nix

13 lines
353 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-05-19 01:08:18 +00:00
outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules);
2025-12-07 22:57:38 -05:00
}