nixos-configs/flake/ci.nix
matt1432 b3b65c1bd9
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(flake): move stuff in flake dir
2024-07-21 16:10:13 -04:00

14 lines
420 B
Nix

# CI: https://github.com/Mic92/dotfiles/blob/c2f538934d67417941f83d8bb65b8263c43d32ca/flake.nix#L168
{
system,
pkgs,
self,
}: let
inherit (pkgs.lib) filterAttrs mapAttrs' nameValuePair;
nixosMachines =
mapAttrs'
(name: config: nameValuePair "nixos-${name}" config.config.system.build.toplevel)
((filterAttrs (_: config: config.pkgs.system == system)) self.nixosConfigurations);
in
nixosMachines