From 5402178e7b0fe67e2e7efb241ec9e20be2e8e047 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Wed, 16 Jul 2025 20:51:23 +0200 Subject: [PATCH] reinstate import statement for panel module, fixes error deploying fedi201 (#468) resolves error on CI run https://git.fediversity.eu/Fediversity/Fediversity/actions/runs/1026: ``` 123456 error: attempt to call something which is not a function but a path: /nix/store/93yyf22vw60l1j3l6h02c99p93lp55q5-source/panel at /nix/store/93yyf22vw60l1j3l6h02c99p93lp55q5-source/machines/dev/fedi201/fedipanel.nix:13:6: 12| imports = [ 13| (../../../panel { }).module | ^ 14| "${sources.home-manager}/nixos"``` ``` Reviewed-on: https://git.fediversity.eu/Fediversity/Fediversity/pulls/468 --- machines/dev/fedi201/fedipanel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/dev/fedi201/fedipanel.nix b/machines/dev/fedi201/fedipanel.nix index ba87bf4b..96a826cf 100644 --- a/machines/dev/fedi201/fedipanel.nix +++ b/machines/dev/fedi201/fedipanel.nix @@ -10,7 +10,7 @@ in _class = "nixos"; imports = [ - (../../../panel { }).module + (import ../../../panel { }).module "${sources.home-manager}/nixos" ];