2020-05-26 02:17:55 +02:00
|
|
|
# This module makes it possible to get at the depot from "proper"
|
|
|
|
# NixOS modules.
|
|
|
|
#
|
|
|
|
# It needs to be included and configured in each system like this:
|
|
|
|
#
|
|
|
|
# {
|
2020-06-13 22:52:20 +02:00
|
|
|
# imports = [ "${depot.depotPath}/ops/nixos/depot.nix" ];
|
2020-05-26 02:17:55 +02:00
|
|
|
# inherit depot;
|
|
|
|
# }
|
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
options.depot = with lib; mkOption {
|
|
|
|
description = "tazjin's imported monorepo";
|
|
|
|
};
|
|
|
|
}
|