nixos/flake.nix

22 lines
567 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";
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
}