From 91a44c646efd1288af70134ec459be9b6c364376 Mon Sep 17 00:00:00 2001 From: iFargle Date: Sat, 10 Feb 2024 10:32:16 +0900 Subject: [PATCH] test --- nixos/default.nix | 1 + nixos/hosts/nixos-framework/default.nix | 2 -- nixos/minimal.nix | 1 + nixos/small.nix | 1 + 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/default.nix b/nixos/default.nix index 19647a0b..6269c751 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -82,4 +82,5 @@ }; system.stateVersion = stateVersion; + nixpkgs.hostPlatform = system; } diff --git a/nixos/hosts/nixos-framework/default.nix b/nixos/hosts/nixos-framework/default.nix index a465c2f5..f66415e8 100644 --- a/nixos/hosts/nixos-framework/default.nix +++ b/nixos/hosts/nixos-framework/default.nix @@ -10,8 +10,6 @@ ../../common/services/podman.nix ]; - nixpkgs.hostPlatform = system; - services.fwupd.enable = true; # we need fwupd 1.9.7 to downgrade the fingerprint sensor firmware services.fwupd.package = (import (builtins.fetchTarball { diff --git a/nixos/minimal.nix b/nixos/minimal.nix index 07990912..d91b75a8 100644 --- a/nixos/minimal.nix +++ b/nixos/minimal.nix @@ -59,4 +59,5 @@ }; system.stateVersion = stateVersion; + nixpkgs.hostPlatform = system; } diff --git a/nixos/small.nix b/nixos/small.nix index 1c2c9f99..946d1adc 100644 --- a/nixos/small.nix +++ b/nixos/small.nix @@ -56,4 +56,5 @@ }; system.stateVersion = stateVersion; + nixpkgs.hostPlatform = system; }