nixos/neko/hardware-configuration.nix

46 lines
1.5 KiB
Nix
Raw Normal View History

2023-01-15 18:56:16 +01:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
2023-09-17 15:57:39 +02:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2023-01-15 18:56:16 +01:00
2023-07-28 17:36:50 +02:00
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" ];
2023-06-09 18:28:17 +02:00
boot.initrd.kernelModules = [ "i915" ];
2023-01-15 18:56:16 +01:00
boot.kernelModules = [ "kvm-intel" ];
2024-05-26 16:58:37 +02:00
# don't check for split locks, for KVM and Co.
boot.kernelParams = [ "split_lock_detect=off" ];
2024-03-27 19:49:42 +01:00
# efi partition
2023-01-15 18:56:16 +01:00
fileSystems."/boot" =
2024-01-11 18:33:21 +01:00
{ device = "/dev/disk/by-id/nvme-Seagate_FireCuda_530_ZP4000GM30013_7VS01VBM-part1";
2023-01-15 18:56:16 +01:00
fsType = "vfat";
2024-01-11 18:33:21 +01:00
neededForBoot = true;
2023-01-15 18:56:16 +01:00
};
2024-05-29 22:34:18 +02:00
/*
2024-03-27 19:49:42 +01:00
# vms
boot.initrd.luks.devices."crypt-vms".device = "/dev/disk/by-id/nvme-CT2000P5PSSD8_213330E4ED05";
2024-03-27 07:35:43 +01:00
fileSystems."/home/cullmann/vms" =
{ device = "/dev/mapper/crypt-vms";
fsType = "btrfs";
neededForBoot = true;
options = [ "noatime" "nodiratime" ];
depends = [ "/home" ];
};
2024-01-11 21:31:41 +01:00
2024-03-27 19:49:42 +01:00
# projects
boot.initrd.luks.devices."crypt-projects".device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S69ENF0R846614L";
2024-03-27 07:35:43 +01:00
fileSystems."/home/cullmann/projects" =
{ device = "/dev/mapper/crypt-projects";
fsType = "btrfs";
neededForBoot = true;
options = [ "noatime" "nodiratime" ];
depends = [ "/home" ];
2024-05-29 22:34:18 +02:00
};*/
2023-07-28 20:14:41 +02:00
2023-01-15 18:56:16 +01:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}