2024-05-15 11:01:15 +02:00
|
|
|
{ config, lib, modulesPath, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "ehci_pci" "ata_piix" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
fileSystems."/" = {
|
2024-05-15 13:23:05 +02:00
|
|
|
device = "tmpfs";
|
|
|
|
fsType = "tmpfs";
|
|
|
|
options = [ "mode=755" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
2024-05-15 11:01:15 +02:00
|
|
|
device = "/dev/sda2";
|
|
|
|
fsType = "btrfs";
|
2024-05-15 13:23:05 +02:00
|
|
|
options = [ "subvol=boot" "noatime" ];
|
2024-05-15 11:01:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/nix" = {
|
|
|
|
device = "/dev/sda2";
|
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=nix" "compress=zstd" "noatime" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/var/lib" = {
|
|
|
|
device = "/dev/sda2";
|
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=lib" "compress=zstd" "noatime" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/var/log" = {
|
|
|
|
device = "/dev/sda2";
|
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=log" "compress=zstd" "noatime" ];
|
|
|
|
};
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
}
|