From c95fc0be119a4b8fbecbe62a736c86adb9483f55 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 15:36:44 +0100 Subject: [PATCH 1/3] 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"; From 46e25b8d440ba5206381e6396decc25237e204e6 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 15:41:31 +0100 Subject: [PATCH 2/3] srv-core: Install `it87` as kernel module --- hosts/srv-core/hardware.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/srv-core/hardware.nix b/hosts/srv-core/hardware.nix index 94aca3a..b418ddc 100644 --- a/hosts/srv-core/hardware.nix +++ b/hosts/srv-core/hardware.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ config, inputs, ... }: { imports = [ inputs.nixos-hardware.nixosModules.hardkernel-odroid-h4 ]; @@ -10,6 +10,7 @@ "coretemp" "it87" ]; + extraModulePackages = [ config.boot.kernelPackages.it87 ]; initrd.availableKernelModules = [ "xhci_pci" "ahci" From ff9c7ec2694c9e4c0a6b27773abd9658974effb3 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 16:08:23 +0100 Subject: [PATCH 3/3] srv-core: Attempt to enable PWM manual control --- hosts/srv-core/hardware.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/srv-core/hardware.nix b/hosts/srv-core/hardware.nix index b418ddc..9b268a5 100644 --- a/hosts/srv-core/hardware.nix +++ b/hosts/srv-core/hardware.nix @@ -11,6 +11,7 @@ "it87" ]; extraModulePackages = [ config.boot.kernelPackages.it87 ]; + extraModprobeConfig = "options it87 force_id=0x8613"; initrd.availableKernelModules = [ "xhci_pci" "ahci"