21 lines
567 B
Nix
21 lines
567 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
import-tree.url = "github:vic/import-tree";
|
|
|
|
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
|
|
|
|
aagl.url = "github:ezKEa/aagl-gtk-on-nix";
|
|
aagl.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
systems = [ "x86_64-linux" ];
|
|
imports = [
|
|
inputs.wrapper-modules.flakeModules.default
|
|
(inputs.import-tree ./modules)
|
|
];
|
|
};
|
|
}
|