nixos-config/hosts/nuc/hardware-configuration.nix

53 lines
1.6 KiB
Nix
Raw Normal View History

2023-01-23 17:30:09 +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.
2023-05-19 11:42:43 +02:00
{ config, lib, modulesPath, ... }:
2023-01-23 17:30:09 +01:00
{
imports =
[
(modulesPath + "/installer/scan/not-detected.nix")
];
2023-02-17 21:59:26 +01:00
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
2023-01-23 17:30:09 +01:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
2023-05-31 10:03:25 +02:00
boot.initrd.systemd.enable = true;
2023-01-23 17:30:09 +01:00
boot.extraModulePackages = [ ];
2023-11-18 14:54:56 +01:00
services.fstrim.enable = true;
2023-01-23 17:30:09 +01:00
2024-05-15 11:01:15 +02:00
fileSystems."/" = {
device = "tmpfs";
fsType = "tmpfs";
options = [ "mode=755" ];
};
fileSystems."/var/lib" = {
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=lib" "compress=zstd" "discard=async" "noatime" ];
};
fileSystems."/var/log" = {
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=log" "compress=zstd" "discard=async" "noatime" ];
};
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=nix" "compress=zstd" "discard=async" "noatime" ];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/0135-7C8C";
fsType = "vfat";
};
swapDevices = [{ device = "/dev/disk/by-uuid/fdedb47c-a370-4005-ac37-1c186e667de0"; }];
2023-01-23 17:30:09 +01:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}