From be91e1e87776f460e3fd8d08215e6fd17480ac6a Mon Sep 17 00:00:00 2001 From: Timo Boomers Date: Sat, 17 May 2025 14:04:55 +0200 Subject: [PATCH] changed overlay --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0f22715..1f25a1e 100644 --- a/flake.nix +++ b/flake.nix @@ -163,7 +163,12 @@ pkgs = nixpkgs.legacyPackages.aarch64-linux; extraSpecialArgs = { inherit inputs nix-colors; }; modules = [ - ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) + ({ config, pkgs, ... }: { nixpkgs.overlays = [ final: prev: { + unstable = import nixpkgs-unstable { + config.allowUnfree = true; + localSystem = { inherit "aarch64-linux"; }; + }; + } ]; }) ./hosts/p-th-rpi-01/home.nix ];