diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-14 13:01:14 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-14 13:01:14 -0800 |
| commit | 0520741b8ab872efcabb16ab3abcb0d6aaaa5718 (patch) | |
| tree | 7156bb80ad72f7c8035dcfca906c4dd98d0d99ac /flake/scripts/default.nix | |
| parent | remove duplicated configuration for treefmt/pre-commit (diff) | |
| download | infra-0520741b8ab872efcabb16ab3abcb0d6aaaa5718.tar.gz | |
use `just` (again) instead of custom scripts
Diffstat (limited to 'flake/scripts/default.nix')
| -rw-r--r-- | flake/scripts/default.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/flake/scripts/default.nix b/flake/scripts/default.nix deleted file mode 100644 index cf105f1..0000000 --- a/flake/scripts/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ - pkgs, - system, - inputs, -}: -let - common = import ./common.nix { inherit pkgs; }; - darwin = import ./darwin.nix { inherit pkgs system inputs; }; - remote = import ./remote.nix { inherit pkgs; }; -in -{ - common = common; - remote = remote; - darwin = if pkgs.lib.hasSuffix "darwin" system then darwin else [ ]; - - all = common ++ remote ++ (if pkgs.lib.hasSuffix "darwin" system then darwin else [ ]); -} |
