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

57 lines
1.7 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.
{ config, lib, pkgs, modulesPath, ... }:
{
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" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{
2023-02-17 21:59:26 +01:00
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=root" "compress=zstd" "discard=async" "noatime" ];
2023-01-23 17:30:09 +01:00
};
fileSystems."/var/lib" =
{
2023-02-17 21:59:26 +01:00
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=lib" "compress=zstd" "discard=async" "noatime" ];
2023-01-23 17:30:09 +01:00
};
fileSystems."/var/log" =
{
2023-02-17 21:59:26 +01:00
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=log" "compress=zstd" "discard=async" "noatime" ];
};
fileSystems."/nix/store" =
{
device = "/dev/disk/by-uuid/16b0bd14-1b07-477d-a20d-982f9467f6df";
fsType = "btrfs";
options = [ "subvol=store" "compress=zstd" "discard=async" "noatime" ];
2023-01-23 17:30:09 +01:00
};
fileSystems."/boot" =
{
2023-02-17 21:59:26 +01:00
device = "/dev/disk/by-uuid/0135-7C8C";
2023-01-23 17:30:09 +01:00
fsType = "vfat";
};
swapDevices =
2023-02-17 21:59:26 +01:00
[{ 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;
}