Personal-use NixOS configuration
at main 15 lines 206 B view raw
1{ 2 nixos-hardware, 3 isLaptop, 4 ... 5}: 6 7{ 8 imports = [ 9 nixos-hardware.nixosModules.common-cpu-intel 10 ]; 11 12 services.hardware.openrgb.motherboard = "intel"; 13 14 services.thermald.enable = isLaptop; 15}