nixos-laptop/nixos-configurations.nix

19 lines
308 B
Nix
Raw Permalink Normal View History

2024-11-11 20:40:36 +00:00
inputs @ {
nixpkgs,
self,
...
2024-11-11 20:50:00 +00:00
}: {
nixosConfigurations = nixpkgs.lib.mapAttrs (name: {
2024-11-11 20:40:36 +00:00
system,
module,
}:
nixpkgs.lib.nixosSystem {
inherit system;
modules = [./nixos module];
specialArgs = {
inherit inputs system self;
};
2024-11-11 20:50:00 +00:00
}) (import ./machines);
}