From a14cc559210fefb7136bb170ac185961156fa80f Mon Sep 17 00:00:00 2001 From: ediblerope Date: Wed, 8 Apr 2026 09:27:34 +0100 Subject: [PATCH] Revert nixpkgs.stdenv.hostPlatform back to nixpkgs.hostPlatform nixpkgs.stdenv.hostPlatform is not a valid NixOS option. The deprecation warning comes from nixpkgs internals and is harmless. Co-Authored-By: Claude Opus 4.6 --- hosts/hardware/FredOS-Gaming.nix | 2 +- hosts/hardware/FredOS-Macbook.nix | 2 +- hosts/hardware/FredOS-Mediaserver.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/hardware/FredOS-Gaming.nix b/hosts/hardware/FredOS-Gaming.nix index 8ffc8bd..64d5306 100644 --- a/hosts/hardware/FredOS-Gaming.nix +++ b/hosts/hardware/FredOS-Gaming.nix @@ -36,7 +36,7 @@ swapDevices = [ ]; - nixpkgs.stdenv.hostPlatform = lib.mkDefault "x86_64-linux"; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; networking.hostName = "FredOS-Gaming"; diff --git a/hosts/hardware/FredOS-Macbook.nix b/hosts/hardware/FredOS-Macbook.nix index 812b23b..7b15780 100644 --- a/hosts/hardware/FredOS-Macbook.nix +++ b/hosts/hardware/FredOS-Macbook.nix @@ -28,7 +28,7 @@ swapDevices = [ ]; - nixpkgs.stdenv.hostPlatform = lib.mkDefault "x86_64-linux"; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; networking.hostName = "FredOS-Macbook"; hardware.enableRedistributableFirmware = true; diff --git a/hosts/hardware/FredOS-Mediaserver.nix b/hosts/hardware/FredOS-Mediaserver.nix index 1bf16a5..5afbd2f 100644 --- a/hosts/hardware/FredOS-Mediaserver.nix +++ b/hosts/hardware/FredOS-Mediaserver.nix @@ -52,7 +52,7 @@ swapDevices = [ ]; - nixpkgs.stdenv.hostPlatform = lib.mkDefault "x86_64-linux"; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; networking.hostName = "FredOS-Mediaserver";