59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
# This file was initially made by 'nixos-generate-config', try not to edit too much
|
|
{ config, lib, pkgs, modulesPath, ... }: {
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
# Set all boot options
|
|
boot = {
|
|
# Set a kernel version and load/blacklist drivers
|
|
blacklistedKernelModules = [
|
|
"pcspkr"
|
|
];
|
|
kernel.sysctl."vm.max_map_count" = 2147483642;
|
|
initrd = {
|
|
availableKernelModules = [
|
|
"nvme"
|
|
"xhci_pci"
|
|
"usbhid"
|
|
"usb_storage"
|
|
"sd_mod"
|
|
"sdhci_pci"
|
|
];
|
|
kernelModules = [
|
|
"kvm-amd"
|
|
];
|
|
};
|
|
|
|
# Manage supported filesystems
|
|
supportedFilesystems = {
|
|
ntfs = true;
|
|
zfs = lib.mkForce false;
|
|
};
|
|
};
|
|
|
|
# Mount everything as necessary
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/b29e4367-8b18-415b-ada9-4d7984db075b";
|
|
fsType = "btrfs";
|
|
};
|
|
"/boot" = {
|
|
device = "/dev/disk/by-uuid/9DE4-C162";
|
|
fsType = "vfat";
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|
};
|
|
};
|
|
|
|
# Set the swap partition
|
|
swapDevices = [
|
|
{ device = "/dev/disk/by-uuid/19d962f3-49f5-4fb6-9f11-07525c6cfff0"; }
|
|
];
|
|
|
|
# Enables DHCP on each ethernet and wireless interface.
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|