diff --git a/flake.nix b/flake.nix index 7c085f7..71d675c 100644 --- a/flake.nix +++ b/flake.nix @@ -76,18 +76,19 @@ nixosConfigurations = raspiConfigs // pcConfigs; homeConfigurations = let + system = "x86_64-linux"; overlay-unstable = final: prev: { unstable = import inputs.nixpkgs-unstable { - system = "x86_64-linux"; config.allowUnfree = true; + inherit system; }; }; pkgs = import inputs.nixpkgs { - system = "x86_64-linux"; config = { allowUnfree = true; }; overlays = [ overlay-unstable ]; + inherit system; }; in {