52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ config, pkgs, ... }:
|
|
{
|
|
|
|
networking.hostName = "foureighty";
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
extraModulePackages = with config.boot.kernelPackages; [ wireguard ];
|
|
initrd.kernelModules = [ "i915" ];
|
|
initrd.availableKernelModules = [
|
|
"aes_x86_64"
|
|
"crypto_simd"
|
|
"aesni_intel"
|
|
"cryptd"
|
|
];
|
|
kernelParams = [
|
|
"mds=full"
|
|
];
|
|
|
|
initrd.luks.devices = [
|
|
{
|
|
name = "root";
|
|
device = "/dev/disk/by-uuid/a9e8a44f-15be-4844-a0a1-46892cc5e44e";
|
|
preLVM = true;
|
|
allowDiscards = true;
|
|
}];
|
|
loader.grub = {
|
|
device = "nodev";
|
|
efiSupport = true;
|
|
};
|
|
loader.efi.canTouchEfiVariables = true;
|
|
|
|
};
|
|
|
|
time.hardwareClockInLocalTime = true;
|
|
time.timeZone = "Europe/London";
|
|
|
|
hardware.trackpoint.enable = true;
|
|
services.fprintd.enable = true;
|
|
|
|
hardware.nvidiaOptimus.disable = true;
|
|
hardware.opengl.extraPackages = [ pkgs.linuxPackages.nvidia_x11.out ];
|
|
hardware.opengl.extraPackages32 = [ pkgs.linuxPackages.nvidia_x11.lib32 ];
|
|
|
|
imports = [
|
|
/etc/nixos/hardware-configuration.nix
|
|
../quirks/thinkpad-cpu-throttling.nix
|
|
../boot.nix
|
|
../common.nix
|
|
../gfx-intel.nix
|
|
../virtualbox.nix
|
|
];
|
|
}
|