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: Fediversity/Fediversity#468
This commit is contained in:
Kiara Grouwstra 2025-07-16 20:51:23 +02:00
parent e627815399
commit 5402178e7b

View file

@ -10,7 +10,7 @@ in
_class = "nixos"; _class = "nixos";
imports = [ imports = [
(../../../panel { }).module (import ../../../panel { }).module
"${sources.home-manager}/nixos" "${sources.home-manager}/nixos"
]; ];