summary refs log tree commit diff stats
path: root/system/settings/hardware/thinkpad.nix
diff options
context:
space:
mode:
authorAlan Pearce2024-05-18 20:43:28 +0200
committerAlan Pearce2024-05-18 20:43:28 +0200
commitefb34826fc563afa08c0c8c6add16cf9ebf19310 (patch)
tree912dc2cff4a06b5e20daa24473086bddb6c9b199 /system/settings/hardware/thinkpad.nix
parent6494b4c6c26a85497164df39efbfef1ae81f308e (diff)
downloadnixfiles-efb34826fc563afa08c0c8c6add16cf9ebf19310.tar.lz
nixfiles-efb34826fc563afa08c0c8c6add16cf9ebf19310.tar.zst
nixfiles-efb34826fc563afa08c0c8c6add16cf9ebf19310.zip
remove old files
Diffstat (limited to 'system/settings/hardware/thinkpad.nix')
-rw-r--r--system/settings/hardware/thinkpad.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/system/settings/hardware/thinkpad.nix b/system/settings/hardware/thinkpad.nix
deleted file mode 100644
index 649f626a..00000000
--- a/system/settings/hardware/thinkpad.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ config
-, pkgs
-, ...
-}: {
-  boot.kernelModules = [ ];
-  boot.blacklistedKernelModules = [ "thinkpad_ec" ];
-  boot.extraModulePackages = with config.boot.kernelPackages; [
-    acpi_call
-  ];
-
-  services.fwupd = {
-    enable = true;
-  };
-
-  services.thinkfan = {
-    enable = true;
-  };
-
-  imports = [
-    ./bare-metal.nix
-    ./laptop.nix
-  ];
-}