diff --git a/flake.nix b/flake.nix index c34f8a084a756200a160d4f4cf9e8f189ba5d1e3..9ea32c80011ab9c15e693c7dcf50e0edb1e5ce9f 100644 --- a/flake.nix +++ b/flake.nix @@ -13,9 +13,8 @@ "aarch64-linux" "armv6l-linux" "armv7l-linux" ]; - forAllSystems = f: nixpkgs.lib.genAttrs systems f; + forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); in { - nixosModules.default = import ./module; packages = forAllSystems ( system: import ./default.nix {pkgs = import nixpkgs {inherit system;};}