From 9fa94af7140afb7c9fcced8aa1fb20abb81c5955 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 2 Nov 2025 14:20:57 -0800 Subject: add helpers to build remotely with nixos --- flake/scripts/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'flake/scripts/default.nix') diff --git a/flake/scripts/default.nix b/flake/scripts/default.nix index db6febe..6b16e75 100644 --- a/flake/scripts/default.nix +++ b/flake/scripts/default.nix @@ -6,10 +6,12 @@ let common = import ./common.nix { inherit pkgs; }; darwin = import ./darwin.nix { inherit pkgs system inputs; }; + remote = import ./remote.nix { inherit pkgs system inputs; }; in { common = common; + remote = remote; darwin = if pkgs.lib.hasSuffix "darwin" system then darwin else [ ]; - all = common ++ (if pkgs.lib.hasSuffix "darwin" system then darwin else [ ]); + all = common ++ remote ++ (if pkgs.lib.hasSuffix "darwin" system then darwin else [ ]); } -- cgit v1.2.3