diff --git a/modules/hyprspace/default.nix b/modules/hyprspace/default.nix index 79ea277..5b94eb6 100644 --- a/modules/hyprspace/default.nix +++ b/modules/hyprspace/default.nix @@ -1,7 +1,7 @@ { inputs, pkgs, lib, hosts, config, ... }: let inherit (config.networking) hostName; - inherit (inputs.self.packages.${pkgs.system}) hyprspace; + inherit (inputs.depot.packages.${pkgs.system}) hyprspace; hyprspaceCapableNodes = lib.filterAttrs (_: host: host ? hypr) hosts; peersFormatted = builtins.mapAttrs (_: x: { "${x.hypr.addr}".id = x.hypr.id; }) hyprspaceCapableNodes; peersFiltered = lib.filterAttrs (name: _: name != hostName) peersFormatted;