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