diff --git a/flake.nix b/flake.nix index 8d2175a..0bc9b8b 100644 --- a/flake.nix +++ b/flake.nix @@ -9,17 +9,15 @@ outputs = { nixpkgs, nixos-hardware, nixpkgs-unstable, ... }: let - system = "x86_64-linux"; overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { - inherit system; + system = "x86_64-linux"; config.allowUnfree = true; }; }; - system-arm64 = "aarch64-linux"; overlay-unstable-arm = final: prev: { unstable = import nixpkgs-unstable { - inherit system-arm64; + system = "aarch64-linux"; config.allowUnfree = true; }; };