summaryrefslogtreecommitdiff
path: root/systems.nix
diff options
context:
space:
mode:
authorscouckel <james.krinsky@gmail.com>2026-04-08 11:50:19 -0400
committerscouckel <james.krinsky@gmail.com>2026-04-08 11:50:19 -0400
commitc18e866fda8372e2531ecaf7568d0c86bef94935 (patch)
tree31404122a4473ea135e5bc6a83a69606b0547e30 /systems.nix
parentc17a7aff33f3d590cd0ebb0707ea9cdaa0a50ceb (diff)
move systems back
Diffstat (limited to 'systems.nix')
-rw-r--r--systems.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/systems.nix b/systems.nix
deleted file mode 100644
index efc1c28..0000000
--- a/systems.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{inputs, ...}: {
- options = {
- flake = inputs.flake-parts.lib.mkSubmoduleOptions {
- wrapperModules = inputs.nixpkgs.lib.mkOption {
- default = {};
- };
- };
- };
-
- config.systems = [
- "x86_64-linux"
- "x86_64-darwin"
- "aarch64-linux"
- "aarch64-darwin"
- ];
-}