From 918240df7f5f535ed1580f24cddbd9176f82631c Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Fri, 21 Jun 2024 12:38:09 +0200 Subject: [PATCH] Fixed keyboard not working --- hosts/laptop/hardware-configuration.nix | 5 ----- modules/system/cli/common.nix | 1 + modules/system/hardware/laptop.nix | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index 8051f05..637c3a3 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -24,11 +24,6 @@ options = [ "fmask=0022" "dmask=0022" ]; }; - fileSystems."/var/lib/docker/overlay2/539923c18432611fc07642163d0fefe19c5de9d2767fa4778645a8d65f99f85a/merged" = - { device = "overlay"; - fsType = "overlay"; - }; - swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking diff --git a/modules/system/cli/common.nix b/modules/system/cli/common.nix index c2af418..710722b 100644 --- a/modules/system/cli/common.nix +++ b/modules/system/cli/common.nix @@ -2,6 +2,7 @@ { environment.systemPackages = with pkgs; [ + usbutils tree neofetch btop diff --git a/modules/system/hardware/laptop.nix b/modules/system/hardware/laptop.nix index 8e256b4..5665ee9 100644 --- a/modules/system/hardware/laptop.nix +++ b/modules/system/hardware/laptop.nix @@ -13,6 +13,6 @@ }; }; - powerManagement.powertop.enable = true; + # powerManagement.powertop.enable = true; }