config tweaks

This commit is contained in:
Satria 2026-02-07 13:56:10 +07:00
commit 64f4c4f5b0
3 changed files with 7 additions and 5 deletions

View file

@ -5,6 +5,7 @@ rewrite of my nixos flake with hopefully better structuring and modularity
- (progress) migrate files to this repository in the modules folder - (progress) migrate files to this repository in the modules folder
- (half-progress) split the files into little chunks for 1 specific purposes per file - (half-progress) split the files into little chunks for 1 specific purposes per file
- (quater-progress) reintegrate file paths and arguments to work together - (quater-progress) reintegrate file paths and arguments to work together
- test the final config in my system
# todo: migrate files below # todo: migrate files below
- [X] flake stuff (flake.nix & flake.lock) - [X] flake stuff (flake.nix & flake.lock)

View file

@ -1,7 +1,9 @@
{ ... }: { { ... }: {
imports = [ imports = [
../../modules/scans/thinkpad.nix
../../modules/hardware/thinkpad.nix ../../modules/hardware/thinkpad.nix
../../modules/system/default.nix ../../modules/system/default.nix
../../modules/scans/thinkpad.nix ../../modules/system/user.nix
]; ];
} }

View file

@ -1,5 +1,4 @@
{ pkgs, ... }: { pkgs, ... }: {
{
imports = [ imports = [
./misc/battery-power.nix ./misc/battery-power.nix
./misc/power-button.nix ./misc/power-button.nix
@ -11,11 +10,11 @@
./core/tpm.nix ./core/tpm.nix
]; ];
hardware.bluetooth.enable = true;
boot = { boot = {
kernelPackages = pkgs.linuxPackages; kernelPackages = pkgs.linuxPackages;
kernel.sysctl."vm.laptop_mode" = 5; kernel.sysctl."vm.laptop_mode" = 5;
initrd.availableKernelModules = [ "thinkpad_acpi" ]; initrd.availableKernelModules = [ "thinkpad_acpi" ];
}; };
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
} }