This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/hardware-configuration.nix

47 lines
1.7 KiB
Nix
Raw Normal View History

2022-08-07 16:11:24 +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.
2022-10-03 23:21:40 +01:00
{ config, lib, pkgs, modulesPath, ... }: {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2022-08-07 16:11:24 +01:00
2022-10-03 23:21:40 +01:00
boot.initrd.availableKernelModules =
[ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
2022-08-07 16:11:24 +01:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
2022-10-03 23:21:40 +01:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/5907e244-fda6-41d4-aff1-a2be7160a559";
fsType = "xfs";
};
fileSystems."/boot/efi" = {
device = "/dev/disk/by-uuid/D56E-61DC";
fsType = "vfat";
};
fileSystems."/mnt/hdd" = {
device = "/dev/disk/by-uuid/ecbbfb05-ada8-4044-81a6-9a280f93802f";
fsType = "xfs";
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/4dd7a8ea-311a-458b-8839-1d92c7abab1f";
fsType = "xfs";
};
2022-08-07 16:11:24 +01:00
swapDevices =
2022-09-10 05:44:34 +01:00
[{ device = "/dev/disk/by-uuid/e0d93baa-8a8f-4fb2-9a48-f37f5d397826"; }];
2022-08-07 16:11:24 +01:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
2022-09-04 00:54:47 +01:00
# networking.useDHCP = lib.mkDefault true;
2022-08-07 16:11:24 +01:00
# networking.interfaces.enp8s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true;
2022-10-03 23:21:40 +01:00
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2022-08-07 16:11:24 +01:00
}