flake: add a "hostSystems" target

This commit is contained in:
Colin 2023-12-09 14:11:37 +00:00
parent 402baa1011
commit f49e466ce8
1 changed files with 1 additions and 0 deletions

View File

@ -192,6 +192,7 @@
# unofficial output
hostConfigs = mapAttrValues (host: host.config) self.nixosConfigurations;
hostSystems = mapAttrValues (host: host.config.system.build.toplevel) self.nixosConfigurations;
hostPkgs = mapAttrValues (host: host.config.system.build.pkgs) self.nixosConfigurations;
hostPrograms = mapAttrValues (host: mapAttrValues (p: p.package) host.config.sane.programs) self.nixosConfigurations;