diff options
author | Alan Pearce | 2024-05-18 20:43:28 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-18 20:43:28 +0200 |
commit | efb34826fc563afa08c0c8c6add16cf9ebf19310 (patch) | |
tree | 912dc2cff4a06b5e20daa24473086bddb6c9b199 /system/settings/machines | |
parent | 6494b4c6c26a85497164df39efbfef1ae81f308e (diff) | |
download | nixfiles-efb34826fc563afa08c0c8c6add16cf9ebf19310.tar.lz nixfiles-efb34826fc563afa08c0c8c6add16cf9ebf19310.tar.zst nixfiles-efb34826fc563afa08c0c8c6add16cf9ebf19310.zip |
remove old files
Diffstat (limited to 'system/settings/machines')
-rw-r--r-- | system/settings/machines/t470s.nix | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/system/settings/machines/t470s.nix b/system/settings/machines/t470s.nix deleted file mode 100644 index 5f1f4a1c..00000000 --- a/system/settings/machines/t470s.nix +++ /dev/null @@ -1,57 +0,0 @@ -{ config -, pkgs -, ... -}: { - hardware.usbWwan.enable = false; # unused - systemd.services.ModemManager.enable = false; - - hardware.enableRedistributableFirmware = true; - - boot.extraModprobeConfig = '' - options thinkpad_acpi fan_control=1 - ''; - - services.thinkfan.sensors = '' - hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon0/temp3_input - hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon0/temp1_input - hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon0/temp2_input - ''; - services.thinkfan.levels = '' - (0, 0, 48) - (1, 45, 52) - (2, 50, 57) - (3, 55, 63) - (6, 60, 65) - (7, 60, 85) - (127, 80, 32767) - ''; - - boot.postBootCommands = '' - echo bfq > /sys/block/nvme0n1/queue/scheduler - ''; - - hardware.pulseaudio.extraConfig = '' - load-module module-alsa-sink device=hw:0,7 - ''; - - services.tlp.extraConfig = '' - DISK_DEVICES="nvme0n1" - DISK_IOSCHED="keep" - ''; - - services.xserver = { - dpi = 109; - monitorSection = '' - DisplaySize 310 176 - ''; - }; - - environment.systemPackages = with pkgs; [ - nvme-cli - ]; - - imports = [ - ../hardware/intel-gpu.nix - ../hardware/thinkpad.nix - ]; -} |