nixos-configs/nixos-configurations.nix

19 lines
315 B
Nix
Raw Normal View History

2024-11-11 21:40:36 +01:00
inputs @ {
nixpkgs,
self,
...
2024-11-11 21:50:00 +01:00
}: {
2025-01-26 13:40:28 +01:00
nixosConfigurations = nixpkgs.lib.mapAttrs (_: {
2024-11-11 21:40:36 +01:00
system,
2024-11-17 23:03:19 +01:00
nixosModule,
2024-11-11 21:40:36 +01:00
}:
nixpkgs.lib.nixosSystem {
inherit system;
2024-11-17 23:03:19 +01:00
modules = [./nixos nixosModule];
2024-11-11 21:40:36 +01:00
specialArgs = {
inherit inputs system self;
};
2024-11-11 21:50:00 +01:00
}) (import ./machines);
}