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