blob: 20220e9f57fe829de23da868d5eec6ad104a6708 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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:
#
# {
# imports = [ ../modules/depot.nix ];
# inherit depot;
# }
{ lib, ... }:
{
options.depot = with lib; mkOption {
description = "tazjin's imported monorepo";
};
}
|