diff --git a/flake.nix b/flake.nix index 71f94dad..4563cf4b 100644 --- a/flake.nix +++ b/flake.nix @@ -69,14 +69,6 @@ channels = { nixos = { imports = [(digga.lib.importOverlays ./overlays)]; - overlays = [ - (self: super: { - deploy-rs = { - inherit (inputs.nixos.legacyPackages.x86_64-linux) deploy-rs; - lib = inputs.deploy.lib.x86_64-linux; - }; - }) - ]; }; latest = {}; fork = {}; @@ -182,7 +174,7 @@ profilesOrder = ["system" "direnv"]; profiles.direnv = { user = "barkeeper"; - path = self.pkgs.x86_64-linux.nixos.deploy-rs.lib.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.barkeeper; + path = deploy.lib.x86_64-linux.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.barkeeper; }; }; #example = { diff --git a/shell/devos.nix b/shell/devos.nix index 3a61ec3c..fd6a18c6 100644 --- a/shell/devos.nix +++ b/shell/devos.nix @@ -59,6 +59,6 @@ in { ] ++ lib.optionals (pkgs.stdenv.hostPlatform.isLinux && !pkgs.stdenv.buildPlatform.isDarwin) [ (devos nixos-generators) - (devos deploy-rs.deploy-rs) + (devos inputs.deploy.packages.${pkgs.system}.deploy-rs) ]; }