Files
oott/nix/modules/default.nix
T

10 lines
154 B
Nix
Raw Normal View History

2026-01-25 10:37:47 -05:00
{overlays}: {
2026-01-25 11:30:51 -05:00
oott = import ./oott-service.nix;
2026-01-25 10:37:47 -05:00
overlayNixpkgsForThisInstance = {pkgs, ...}: {
nixpkgs = {
inherit overlays;
};
};
}