gimp3, disable channels

This commit is contained in:
Kopatz
2025-03-10 14:57:43 +01:00
parent d0fa3674c3
commit 28c4ff21a6
7 changed files with 38 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }: {
boot = {
extraModulePackages = with config.boot.kernelPackages; [ zenpower ];
kernelModules = [ "zenpower" ];
blacklistedKernelModules = [ "k10temp" ];
};
environment.systemPackages = with pkgs; [ zenmonitor ];
}