5 lines
161 B
Nix
5 lines
161 B
Nix
{ self, nixpkgs, ... }:
|
|
(nixpkgs.lib.mapAttrs'
|
|
(name: config: nixpkgs.lib.nameValuePair name config.config.system.build.toplevel)
|
|
self.nixosConfigurations
|
|
)
|