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";
|
2026-05-19 22:25:43 +00:00
|
|
|
|
|
|
|
|
aagl.url = "github:ezKEa/aagl-gtk-on-nix";
|
|
|
|
|
aagl.inputs.nixpkgs.follows = "nixpkgs";
|
2025-12-07 22:57:38 -05:00
|
|
|
};
|
|
|
|
|
|
2026-05-20 01:37:16 +00:00
|
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
|
|
|
systems = [ "x86_64-linux" ];
|
|
|
|
|
imports = [
|
|
|
|
|
inputs.wrapper-modules.flakeModules.default
|
|
|
|
|
(inputs.import-tree ./modules)
|
|
|
|
|
];
|
|
|
|
|
};
|
2025-12-07 22:57:38 -05:00
|
|
|
}
|