From 00fc2f38cc1959ee657b7fe80cecf774dcf6740b Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 5 Dec 2020 13:49:03 +0100 Subject: [PATCH] Remove tlp module and laptop profile --- machines/nunotaba/configuration.nix | 1 - modules/tlp.nix | 8 -------- profiles/laptop.nix | 8 -------- 3 files changed, 17 deletions(-) delete mode 100644 modules/tlp.nix delete mode 100644 profiles/laptop.nix diff --git a/machines/nunotaba/configuration.nix b/machines/nunotaba/configuration.nix index 2e225dd..ba713bc 100644 --- a/machines/nunotaba/configuration.nix +++ b/machines/nunotaba/configuration.nix @@ -11,7 +11,6 @@ ../../modules/libvirt.nix ../../profiles/base.nix ../../profiles/dev.nix - ../../profiles/laptop.nix ../../users/simon ]; diff --git a/modules/tlp.nix b/modules/tlp.nix deleted file mode 100644 index 64c0b27..0000000 --- a/modules/tlp.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ config, ... }: - -{ - services.tlp.enable = true; - - # Allow calibrating battery - boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ]; -} diff --git a/profiles/laptop.nix b/profiles/laptop.nix deleted file mode 100644 index 44d86ad..0000000 --- a/profiles/laptop.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, ... }: - -{ - imports = - [ - #../modules/tlp.nix - ]; -}