nix/module/common/Apks.nix

9 lines
252 B
Nix
Raw Normal View History

2024-06-09 23:35:53 +03:00
# I want to pull all the Apk files in their current state
# so that I always have an access to clients that match
# my service versions.
{ pkgs, ... } @args: let
package = (pkgs.callPackage ./apks args);
in {
environment.etc.apks.source = package;
}