TakodaS 149824a515 WIP: nixified webui
currently packaging as a nixosModule so should be easy to integrate with
nixos generators in the future. Also looking at making a docker image
without systemd
2025-03-10 17:51:53 +00:00

20 lines
258 B
Nix

{
lib,
self,
package-name,
...
}:
lib.flake.forAllSystems (
system:
let
mainPkg = self.packages.${system}.${package-name};
in
rec {
inherit (mainPkg) tests;
inherit (mainPkg.tests) mypy pytest nixos;
default = pytest;
}
)