Enable motherboard sensors

This commit is contained in:
Invariantspace 2024-12-15 21:16:43 -08:00
parent e15bfa0b90
commit d1c571ffe8
3 changed files with 14 additions and 10 deletions

View file

@ -200,6 +200,7 @@ in {
iconTheme = "Sweet-Rainbow"; iconTheme = "Sweet-Rainbow";
lookAndFeel = "Sweet-Ambar-Blue"; lookAndFeel = "Sweet-Ambar-Blue";
soundTheme = "yorha"; soundTheme = "yorha";
wallpaperPictureOfTheDay.provider = "bing";
}; };
}; };
ripgrep.enable = true; ripgrep.enable = true;

12
flake.lock generated
View file

@ -394,11 +394,11 @@
}, },
"nixpkgs_6": { "nixpkgs_6": {
"locked": { "locked": {
"lastModified": 1733940404, "lastModified": 1734119587,
"narHash": "sha256-Pj39hSoUA86ZePPF/UXiYHHM7hMIkios8TYG29kQT4g=", "narHash": "sha256-AKU6qqskl0yf2+JdRdD0cfxX4b9x3KKV5RqA6wijmPM=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5d67ea6b4b63378b9c13be21e2ec9d1afc921713", "rev": "3566ab7246670a43abd2ffa913cc62dad9cdf7d5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -483,11 +483,11 @@
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
}, },
"locked": { "locked": {
"lastModified": 1733665616, "lastModified": 1734279981,
"narHash": "sha256-+XTFXYlFJBxohhMGLDpYdEnhUNdxN8dyTA8WAd+lh2A=", "narHash": "sha256-NdaCraHPp8iYMWzdXAt5Nv6sA3MUzlCiGiR586TCwo0=",
"owner": "cachix", "owner": "cachix",
"repo": "pre-commit-hooks.nix", "repo": "pre-commit-hooks.nix",
"rev": "d8c02f0ffef0ef39f6063731fc539d8c71eb463a", "rev": "aa9f40c906904ebd83da78e7f328cd8aeaeae785",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -12,10 +12,13 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "uas" "usbhid" "sd_mod"]; boot = {
boot.initrd.kernelModules = []; extraModulePackages = [config.boot.kernelPackages.it87];
boot.kernelModules = ["kvm-amd"]; extraModprobeConfig = "options it87 force_id=0x8628";
boot.extraModulePackages = []; initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "uas" "usbhid" "sd_mod"];
kernelModules = ["coretemp" "kvm-amd" "it87"];
kernelParams = ["acpi_enforce_resources=lax"];
};
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's