aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-04-07 14:06:17 +0530
committersinanmohd <sinan@sinanmohd.com>2024-04-07 14:06:17 +0530
commitcf21dd5c44985a8704fe1da793132710e0a596c6 (patch)
treee4c5b001d8b061172f6f921e5af3a3ab1edecf19
parent18a9b63be923c505ee5a446dcd3ef28b20c0e241 (diff)
flake: clean up
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index f025d16..0964f0f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -6,11 +6,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, ... }: {