From e715c92530b500f9c7f5bd7723d5f09b7d1be69c Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 26 Sep 2022 18:08:03 +0200 Subject: [PATCH] modules/hyprspace: use package from depot --- modules/hyprspace/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;