Remove unreachable code. #12

Merged
jahanson merged 2 commits from b-n-c into main 2024-05-26 19:46:06 -05:00
Showing only changes of commit 26219e1eaf - Show all commits

View file

@ -90,5 +90,14 @@
}]; }];
}; };
}; };
# Convenience output that aggregates the outputs for home, nixos.
# Also used in ci to build targets generally.
top =
let
nixtop = nixpkgs.lib.genAttrs
(builtins.attrNames inputs.self.nixosConfigurations)
(attr: inputs.self.nixosConfigurations.${attr}.config.system.build.toplevel);
in
nixtop;
}; };
} }