From 730c58eaa04252313a3f14fdee04350610db478b Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 14:56:37 +0100 Subject: [PATCH 1/2] srv-core: Fix sensor kernel modules --- hosts/srv-core/hardware.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/srv-core/hardware.nix b/hosts/srv-core/hardware.nix index 51669b4..94aca3a 100644 --- a/hosts/srv-core/hardware.nix +++ b/hosts/srv-core/hardware.nix @@ -7,8 +7,8 @@ boot = { kernelModules = [ "kvm-intel" - "k10temp" - "nct6775" + "coretemp" + "it87" ]; initrd.availableKernelModules = [ "xhci_pci" From c95fc0be119a4b8fbecbe62a736c86adb9483f55 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 15:36:44 +0100 Subject: [PATCH 2/2] comin: Use switch operation on testing branches --- modules/nixos/services/comin.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/nixos/services/comin.nix b/modules/nixos/services/comin.nix index b5de860..88d9b31 100644 --- a/modules/nixos/services/comin.nix +++ b/modules/nixos/services/comin.nix @@ -47,7 +47,10 @@ in remotes = lib.singleton { name = "origin"; url = "https://github.com/SebastianStork/nixos-config.git"; - branches.main.name = "deploy"; + branches = { + main.name = "deploy"; + testing.operation = "switch"; + }; }; exporter = { listen_address = "127.0.0.1";