aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-06-28 11:44:08 +0530
committersinanmohd <sinan@sinanmohd.com>2024-06-28 12:29:20 +0530
commit6f246fb247b87bcc7f5ad0ca070392cc92071dfc (patch)
treec7fecb8efd616b1829e69327d13fbc3ddcdffbed /flake.nix
parent5bedf456640608cd149041c8f37447139eaddf4d (diff)
flake/supportedSystems: lib.platforms.unix -> lib.systems.flakeExposed
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index ad6638d..ab78426 100644
--- a/flake.nix
+++ b/flake.nix
@@ -15,7 +15,7 @@
pkgs = import nixpkgs { inherit system; };
};
- supportedSystems = lib.platforms.unix;
+ supportedSystems = lib.systems.flakeExposed;
forAllSystems = f: lib.genAttrs supportedSystems (forSystem f);
in
{