diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-21 13:00:38 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-21 13:00:38 -0700 |
| commit | 40d6a40b1de18f28003c4aa5f36d9b4b0ef4afdd (patch) | |
| tree | 45a0902743971b1789b1f5d03efde7390cc0e95e /nix/scripts/default.nix | |
| parent | move user configurations to top-level (diff) | |
| download | infra-40d6a40b1de18f28003c4aa5f36d9b4b0ef4afdd.tar.gz | |
move all profiles, modules, and flakes to top-level
Diffstat (limited to 'nix/scripts/default.nix')
| -rw-r--r-- | nix/scripts/default.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/nix/scripts/default.nix b/nix/scripts/default.nix deleted file mode 100644 index 90851df..0000000 --- a/nix/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 [ ]); -} |
