nixos-laptop/nixos-configurations.nix

17 lines
279 B
Nix

inputs @ {
nixpkgs,
self,
...
}:
nixpkgs.lib.mapAttrs (name: {
system,
module,
}:
nixpkgs.lib.nixosSystem {
inherit system;
modules = [./nixos module];
specialArgs = {
inherit inputs system self;
};
}) (import ./machines)