diff options
| author | scouckel <james.krinsky@gmail.com> | 2026-04-07 17:18:36 -0500 |
|---|---|---|
| committer | scouckel <james.krinsky@gmail.com> | 2026-04-07 17:18:36 -0500 |
| commit | c6f1ea7187a21b84c29e9045ff8475c0cda628bc (patch) | |
| tree | 229138607156f077a04aca08332e3c93859b7f38 /systems.nix | |
| parent | d0dd4b0f7864681cbf0b8851efd4282a5ed4cbf7 (diff) | |
move systems
Diffstat (limited to 'systems.nix')
| -rw-r--r-- | systems.nix | 16 |
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" + ]; +} |
