From 4c0eb14f3b5a26554e9bcd47d7ad4137d4728fb2 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Wed, 28 Sep 2022 08:14:17 +0200 Subject: [PATCH] fix: use overlay within images target, set also a state version --- flake.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/flake.nix b/flake.nix index 0157076..5c31390 100644 --- a/flake.nix +++ b/flake.nix @@ -105,10 +105,18 @@ allowUnfree = true; }; + overlays = [ + self.overlay + ]; + crossSystem = { system = "armv7l-linux"; }; }; + + system = { + stateVersion = "22.05"; + }; } ]; }; @@ -125,10 +133,18 @@ allowUnfree = true; }; + overlays = [ + self.overlay + ]; + crossSystem = { system = "aarch64-linux"; }; }; + + system = { + stateVersion = "22.05"; + }; } ]; };