diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-04-08 21:34:29 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-04-08 21:34:29 +0530 |
commit | da45a35f096465b93a3a95cf9d3ac3a6236a6c97 (patch) | |
tree | cd6826f7e345550729f6980da4a1d0dddc234ca3 | |
parent | 7e2c50762523d8f7f8c8b027baab67d03a7bc99c (diff) |
flake: clean up
-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, ... }: { |