aboutsummaryrefslogtreecommitdiff
path: root/flake/scripts/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake/scripts/default.nix4
1 files changed, 3 insertions, 1 deletions
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 [ ]);
}