summaryrefslogtreecommitdiff
path: root/modules/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 /modules/systems.nix
parentc17a7aff33f3d590cd0ebb0707ea9cdaa0a50ceb (diff)
move systems back
Diffstat (limited to 'modules/systems.nix')
-rw-r--r--modules/systems.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/systems.nix b/modules/systems.nix
new file mode 100644
index 0000000..efc1c28
--- /dev/null
+++ b/modules/systems.nix
@@ -0,0 +1,16 @@
+{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"
+ ];
+}