use latest kernel, enable hardware

This commit is contained in:
Murphy 2025-01-21 03:03:03 +00:00
parent 4542adf054
commit c94d03b2b9
Signed by: freya
GPG key ID: 9FBC6FFD6D2DBF17
2 changed files with 7 additions and 0 deletions

View file

@ -16,6 +16,10 @@ inputs.nixpkgs.lib.nixosSystem {
scale = 1.25;
};
# hardware
hardware.graphics.enable = true;
hardware.bluetooth.enable = true;
# bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

View file

@ -25,6 +25,9 @@
wget
];
# use the latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# timezone
time.timeZone = "Americia/New_York";