feat(goliath): refactor, make fans sane

This commit is contained in:
Kat Inskip 2024-01-26 15:32:38 -08:00
parent 67f6cccf47
commit 69d4363c8c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
18 changed files with 178 additions and 335 deletions

View file

@ -1,8 +1,9 @@
_: {
boot.loader = {
timeout = -1;
timeout = null;
grub = {
# theme = pkgs.nixos-grub2-theme; # so like, this turbo-breaks the fuck out of GRUB, i have no clue why?
enable = true;
useOSProber = true;
splashImage = ./splash.jpg;
extraConfig = ''
set color_normal=black/black

View file

@ -8,6 +8,7 @@
dnsutils
firefox
usbutils
plexamp
inputs.konawall-py.packages.${pkgs.system}.konawall-py
];
services.udev.packages = [

View file

@ -1,11 +0,0 @@
{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
in {
config = mkIf (config.machine.cpuVendor == "intel") {
services.thermald.enable = true;
};
}