diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-09-03 20:53:23 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-09-03 20:53:27 +0530 |
commit | aff2d1b77289a3896a20b4933ad9b8eae08d1948 (patch) | |
tree | 6191b8b80fc32b579a0d60cfcdc5afb04401b686 /flake.nix | |
parent | 50dcf4c300e49a23a72350ff083f2908e5abe888 (diff) |
flake: only support linux for now
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ pkgs = import nixpkgs { inherit system; }; }; - supportedSystems = lib.systems.flakeExposed; + supportedSystems = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; forAllSystems = f: lib.genAttrs supportedSystems (forSystem f); in { |