Compare commits

..

2 commits

Author SHA1 Message Date
688c5b2633 make nixos.nix reusable rather than opinionated
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-09-23 10:19:04 +02:00
ba95bae430 stop passing pathFromRoot where not needed (#532)
Reviewed-on: fediversity/fediversity#532
2025-09-23 10:13:20 +02:00
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 = [ ];