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 - ]; -}