aboutsummaryrefslogtreecommitdiff
path: root/scripts/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-09-06 16:08:07 -0700
committerFranck Cuny <franck@fcuny.net>2025-09-06 16:08:07 -0700
commite2addeab1a11e6589f56bacec4b045d17f322c19 (patch)
tree53647f18d77d882d4898bddff85af21f851278a4 /scripts/default.nix
parentrun my personal website on the droplet (diff)
downloadinfra-e2addeab1a11e6589f56bacec4b045d17f322c19.tar.gz
move things around
Diffstat (limited to '')
-rw-r--r--scripts/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/default.nix b/scripts/default.nix
deleted file mode 100644
index 90851df..0000000
--- a/scripts/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- pkgs,
- system,
- inputs,
-}:
-let
- common = import ./common.nix { inherit pkgs; };
- darwin = import ./darwin.nix { inherit pkgs system inputs; };
- linux = import ./linux.nix { inherit pkgs system inputs; };
-in
-{
- common = common;
- darwin = if pkgs.lib.hasSuffix "darwin" system then darwin else [ ];
- linux = if pkgs.lib.hasSuffix "linux" system then linux else [ ];
-
- all =
- common
- ++ (if pkgs.lib.hasSuffix "darwin" system then darwin else [ ])
- ++ (if pkgs.lib.hasSuffix "linux" system then linux else [ ]);
-}