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