flake: fix broken deploy-rs usage

Still doesn't use deploy-rs from nixpkgs because of usage in digga:
https://github.com/divnix/digga/blob/main/src/generators.nix#L77
This commit is contained in:
teutat3s 2023-07-02 17:56:17 +02:00
parent be42efff50
commit b2d0c80f79
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -65,11 +65,10 @@
nixos = {
imports = [(digga.lib.importOverlays ./overlays)];
overlays = [
deploy.overlay
(self: super: {
deploy-rs = {
inherit (inputs.nixos.legacyPackages.x86_64-linux) deploy-rs;
lib = super.deploy-rs.lib;
lib = inputs.deploy.lib.x86_64-linux;
};
})
];
@ -171,7 +170,7 @@
# profilesOrder = ["system" "direnv"];
# profiles.direnv = {
# user = "bartender";
# path = self.channels.nixos.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.bartender;
# path = self.pkgs.x86_64-linux.nixos.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.bartender;
# };
#};
};