diff options
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,11 +4,12 @@ outputs = { self, nixpkgs }: let lib = nixpkgs.lib; - supportedSystems = lib.platforms.unix; forSystem = f: system: f { inherit system; pkgs = import nixpkgs { inherit system; }; }; + + supportedSystems = lib.platforms.unix; forAllSystems = f: lib.genAttrs supportedSystems (forSystem f); in { devShells = forAllSystems ({ system, pkgs, ... }: { |