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

53 lines
1.6 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.
2023-05-25 15:44:15 +01:00
{ config, lib, modulesPath, ... }:
2022-08-07 16:11:24 +01:00
2023-05-10 13:37:18 +01:00
{
imports =
2023-07-01 19:47:43 +01:00
[
(modulesPath + "/installer/scan/not-detected.nix")
2023-05-10 13:37:18 +01:00
];
boot.initrd.availableKernelModules = [ "amdgpu" "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
2022-08-07 16:11:24 +01:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
2023-08-13 20:24:57 +01:00
boot.extraModulePackages = [];
2022-08-07 16:11:24 +01:00
2023-05-10 13:37:18 +01:00
fileSystems."/" =
2023-07-01 19:47:43 +01:00
{
2023-08-13 20:24:57 +01:00
device = "/dev/disk/by-uuid/2949cfe9-f064-47b4-9621-3941b8ea1a42";
fsType = "xfs";
2023-05-10 13:37:18 +01:00
};
2022-10-03 23:21:40 +01:00
2023-05-10 13:37:18 +01:00
fileSystems."/mnt/hdd" =
2023-07-01 19:47:43 +01:00
{
device = "/dev/disk/by-uuid/ecbbfb05-ada8-4044-81a6-9a280f93802f";
2023-05-10 13:37:18 +01:00
fsType = "xfs";
};
2022-10-03 23:21:40 +01:00
2023-05-10 13:37:18 +01:00
fileSystems."/home" =
2023-07-01 19:47:43 +01:00
{
device = "/dev/disk/by-uuid/4dd7a8ea-311a-458b-8839-1d92c7abab1f";
2023-05-10 13:37:18 +01:00
fsType = "xfs";
};
2022-10-03 23:21:40 +01:00
2023-05-10 13:37:18 +01:00
fileSystems."/boot/efi" =
2023-07-01 19:47:43 +01:00
{
2023-08-13 20:24:57 +01:00
device = "/dev/disk/by-uuid/2128-03CA";
2023-05-10 13:37:18 +01:00
fsType = "vfat";
};
2022-08-07 16:11:24 +01:00
2023-05-10 13:37:18 +01:00
swapDevices = [ ];
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`.
2023-05-10 13:37:18 +01:00
networking.useDHCP = lib.mkDefault true;
2022-08-07 16:11:24 +01:00
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true;
2023-05-10 13:37:18 +01:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2022-08-07 16:11:24 +01:00
}