diff options
| author | seth <[email protected]> | 2023-08-24 07:51:37 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-24 07:54:19 -0400 |
| commit | 8784fea414a31642d6e9c5fb5cfc05f0f3fa340c (patch) | |
| tree | 86cd01678b29cb5f8e73a5326fb2981fd860640e /parts/lib/utils/deploy.nix | |
| parent | 21436db22f7602226ac7744db8486d7ec94ab44a (diff) | |
flake: shorten input names
Diffstat (limited to 'parts/lib/utils/deploy.nix')
| -rw-r--r-- | parts/lib/utils/deploy.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/lib/utils/deploy.nix b/parts/lib/utils/deploy.nix index aaa01f1..261af32 100644 --- a/parts/lib/utils/deploy.nix +++ b/parts/lib/utils/deploy.nix @@ -1,13 +1,13 @@ {inputs, ...}: let inherit (builtins) mapAttrs; - inherit (inputs) deploy-rs; + inherit (inputs) deploy; in { mkDeployNodes = mapAttrs (_: system: let inherit (system) pkgs; deployPkgs = import pkgs.path { inherit (pkgs) system; overlays = [ - deploy-rs.overlay + deploy.overlay (_: prev: { deploy-rs = { inherit (pkgs) deploy-rs; |
