diff options
author | Sergey Gulin | 2024-04-01 14:52:41 +0300 |
---|---|---|
committer | Sergey Gulin | 2024-04-01 15:02:55 +0300 |
commit | f10a3aa17c9cbb1d217ab03369909af6fc29e1d0 (patch) | |
tree | 86535df8eb617e1bbdf5ab712590ef32e8c74993 /README.md | |
parent | 2bad21828ee2c5d1e42588d5f4c53f5b10300c6a (diff) |
[Chore] Fix overlay
Problem: In my recent PR(#264), I accidentally picked overlay output
changes from the philtaken/nixos-vm-tests branch, which broke existing
overlay imports after updating the deploy-rs input.
Solution: Add backwards compatibility so that users don't have to make
changes to their nix flakes.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ In the above configuration, `deploy-rs` is built from the flake, not from nixpkg deployPkgs = import nixpkgs { inherit system; overlays = [ - deploy-rs.overlay + deploy-rs.overlay # or deploy-rs.overlays.default (self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = super.deploy-rs.lib; }; }) ]; }; |