nixos/machines/Lilim/hardware-configuration.nix

159 lines
3.6 KiB
Nix
Raw Normal View History

2023-09-11 20:23:04 +02:00
{
nixpkgs,
config,
pkgs,
...
}:
let
2019-10-08 15:36:47 +02:00
cfg = config.machine;
in
{
imports = [ "${nixpkgs}/nixos/modules/installer/scan/not-detected.nix" ];
2019-02-26 13:44:40 +01:00
boot = {
2019-09-29 08:09:26 +02:00
loader.systemd-boot = {
enable = true;
2023-09-11 20:23:04 +02:00
# signed = true;
# signing-key = "${cfg.secretPath}/secureboot/db.key";
# signing-certificate = "${cfg.secretPath}/secureboot/db.crt";
2019-09-29 08:09:26 +02:00
};
2019-02-26 13:44:40 +01:00
loader.efi.canTouchEfiVariables = true;
2023-04-16 18:29:48 +02:00
tmp = {
2023-09-11 20:23:04 +02:00
cleanOnBoot = true;
2023-04-16 18:29:48 +02:00
};
2025-01-01 20:57:47 +01:00
supportedFilesystems = [ "btrfs" ];
kernelPackages = pkgs.linuxPackages_latest;
2025-01-01 20:57:47 +01:00
initrd = {
availableKernelModules = [
"xhci_pci"
"ahci"
"sd_mod"
"rtsx_pci_sdmmc"
];
luks.devices."btrfs-crypt".device = "/dev/disk/by-uuid/10435741-b864-453d-ab18-4dc710db1378";
};
kernelModules = [
"acpi_call"
"i915"
"kvm-intel"
"uinput"
];
2023-01-29 14:35:38 +01:00
# 5_10 breaks my touchpad/mouse buttons
# https://bbs.archlinux.org/viewtopic.php?id=254885
# maybe modprobe hid_rmi or i2c_i801
# blacklistedKernelModules = [ "i2c_i801" ];
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ]; # pkgs.gitpkgs.linuxPackages_latest.hid-nintendo ];
kernelParams = [ "intel_iommu=on" ];
extraModprobeConfig = ''
options i915 enable_fbc=1 enable_guc=3
'';
2019-09-29 08:09:26 +02:00
kernel.sysctl = {
"kernel.nmi_watchdog" = 0;
"fs.inotify.max_user_watches" = 524288;
"vm.dirty_writeback_centisecs" = 1500;
};
2019-02-26 13:44:40 +01:00
};
2025-01-01 20:57:47 +01:00
fileSystems = {
"/" = {
device = "none";
fsType = "tmpfs";
options = [
"defaults"
"size=6G"
"mode=755"
"noexec"
];
};
"/tmp" = {
device = "/dev/mapper/btrfs-crypt";
fsType = "btrfs";
options = [
"subvol=tmp"
"noatime"
"compress=zstd"
];
neededForBoot = true;
};
"/persist" = {
device = "/dev/mapper/btrfs-crypt";
fsType = "btrfs";
options = [
"subvol=persist"
"noatime"
"compress=zstd"
"noexec"
];
neededForBoot = true;
};
"/nix" = {
device = "/dev/mapper/btrfs-crypt";
fsType = "btrfs";
options = [
"subvol=nix"
"noatime"
"compress=zstd"
];
neededForBoot = true;
};
"/snapshots" = {
device = "/dev/mapper/btrfs-crypt";
fsType = "btrfs";
options = [
"subvol=snapshots"
"noatime"
"compress=zstd"
"noexec"
];
neededForBoot = false;
};
"/boot" = {
device = "/dev/disk/by-uuid/546A-A3D1";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
2023-09-11 20:23:04 +02:00
};
2019-02-26 13:44:40 +01:00
hardware = {
firmware = with pkgs; [ firmwareLinuxNonfree ];
2019-02-26 13:44:40 +01:00
cpu.intel.updateMicrocode = true;
2023-01-29 14:35:38 +01:00
enableAllFirmware = false;
ksm.enable = true;
graphics = {
extraPackages = with pkgs; [ (intel-vaapi-driver.override { enableHybridCodec = true; }) ];
extraPackages32 = with pkgs.pkgsi686Linux; [
(intel-vaapi-driver.override { enableHybridCodec = true; })
];
2019-02-26 13:44:40 +01:00
};
pulseaudio = {
enable = true;
support32Bit = true;
package = pkgs.pulseaudioFull;
zeroconf.discovery.enable = false;
extraClientConf = ''
autospawn = no
'';
};
bluetooth = {
enable = true;
powerOnBoot = true;
};
};
powerManagement = {
enable = true;
2019-09-29 08:09:26 +02:00
cpuFreqGovernor = "powersave";
2019-02-26 13:44:40 +01:00
};
2023-01-29 14:35:38 +01:00
services = {
upower.enable = true;
xserver.videoDrivers = [ "intel" ];
2023-01-29 14:35:38 +01:00
};
2024-05-09 13:35:27 +02:00
environment.variables.LIBVA_DRIVER_NAME = "i915";
2019-02-26 13:44:40 +01:00
time.timeZone = "Europe/Berlin";
}