chore(ops/nixos): finish removal of depot.nix
All user configs and modules have been migrated to using the depot module parameter. All hail the hypnotoad. Change-Id: Ic05c61fccba3ac505a339283b6ef3105a2d0711c Reviewed-on: https://cl.tvl.fyi/c/depot/+/2765 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
parent
649145f4e1
commit
0456de3733
2 changed files with 0 additions and 18 deletions
|
@ -30,10 +30,8 @@ rec {
|
||||||
configuration = { ... }: {
|
configuration = { ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
baseModule
|
baseModule
|
||||||
"${depot.depotPath}/ops/nixos/depot.nix" # TODO(lukegb): remove this once config.depot is no longer referenced.
|
|
||||||
configuration
|
configuration
|
||||||
];
|
];
|
||||||
config.depot = depot;
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
# 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 = [ "${depot.depotPath}/ops/nixos/depot.nix" ];
|
|
||||||
# inherit depot;
|
|
||||||
# }
|
|
||||||
{ lib, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
options.depot = with lib; mkOption {
|
|
||||||
description = "tazjin's imported monorepo";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue