diff options
Diffstat (limited to 'ops/nixos')
-rw-r--r-- | ops/nixos/default.nix | 2 | ||||
-rw-r--r-- | ops/nixos/depot.nix | 16 |
2 files changed, 0 insertions, 18 deletions
diff --git a/ops/nixos/default.nix b/ops/nixos/default.nix index 1d1e8da192b8..e6cb1a760a2e 100644 --- a/ops/nixos/default.nix +++ b/ops/nixos/default.nix @@ -30,10 +30,8 @@ rec { configuration = { ... }: { imports = [ baseModule - "${depot.depotPath}/ops/nixos/depot.nix" # TODO(lukegb): remove this once config.depot is no longer referenced. configuration ]; - config.depot = depot; }; }); diff --git a/ops/nixos/depot.nix b/ops/nixos/depot.nix deleted file mode 100644 index 2c1b71a2da9b..000000000000 --- a/ops/nixos/depot.nix +++ /dev/null @@ -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"; - }; -} |