summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-04-08 21:34:29 +0530
committersinanmohd <sinan@sinanmohd.com>2024-04-08 21:34:29 +0530
commitda45a35f096465b93a3a95cf9d3ac3a6236a6c97 (patch)
treecd6826f7e345550729f6980da4a1d0dddc234ca3
parent7e2c50762523d8f7f8c8b027baab67d03a7bc99c (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 42dfbd2..c7517df 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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, ... }: {