stop passing pathFromRoot where not needed (#532)

Reviewed-on: fediversity/fediversity#532
This commit is contained in:
Kiara Grouwstra 2025-09-23 10:13:20 +02:00
parent 03a22b1cb8
commit ba95bae430
2 changed files with 2 additions and 4 deletions

View file

@ -4,10 +4,9 @@
...
}:
let
inherit (import ./constants.nix) pathToRoot pathFromRoot;
inherit (pkgs) system;
deployment-config = {
inherit pathToRoot pathFromRoot;
inherit (import ./constants.nix) pathToRoot;
nodeName = "ssh";
targetSystem = system;
sshOpts = [ ];

View file

@ -4,10 +4,9 @@
...
}:
let
inherit (import ./constants.nix) pathToRoot pathFromRoot;
inherit (pkgs) system;
deployment-config = {
inherit pathToRoot pathFromRoot;
inherit (import ./constants.nix) pathToRoot;
nodeName = "target";
targetSystem = system;
sshOpts = [ ];