2024-03-03 21:42:59 -05: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, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2024-03-24 14:06:24 -04:00
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2024-03-03 21:42:59 -05:00
|
|
|
|
|
2024-03-24 14:06:24 -04:00
|
|
|
|
boot.initrd.availableKernelModules =
|
|
|
|
|
[ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ];
|
2024-03-03 21:42:59 -05:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
2024-03-06 22:14:16 -05:00
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
2024-03-03 21:42:59 -05:00
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2024-03-24 14:06:24 -04:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/c4217c88-3101-434b-8321-58e2ac89527c";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2024-03-03 21:42:59 -05:00
|
|
|
|
|
2024-03-24 14:06:24 -04:00
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/3445-B2A0";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2024-03-03 21:42:59 -05:00
|
|
|
|
|
2024-03-24 14:06:24 -04:00
|
|
|
|
fileSystems."/mnt/Archive" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/f7e9e6d6-2bf6-429a-aaf0-49b55d53fc83";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2024-03-06 22:14:16 -05:00
|
|
|
|
|
2024-03-24 14:06:24 -04:00
|
|
|
|
fileSystems."/mnt/Media" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/d988d5ca-f9d6-4d85-aa0e-8a437b3c859a";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2024-03-14 05:29:22 -04:00
|
|
|
|
|
2024-03-03 21:42:59 -05:00
|
|
|
|
swapDevices =
|
2024-03-24 14:06:24 -04:00
|
|
|
|
[{ device = "/dev/disk/by-uuid/26094ada-7ba4-4437-bacb-b3cdf6c3397b"; }];
|
2024-03-03 21:42:59 -05: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`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
2024-03-06 22:14:16 -05:00
|
|
|
|
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
|
2024-03-03 21:42:59 -05:00
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
2024-03-24 14:06:24 -04:00
|
|
|
|
hardware.cpu.amd.updateMicrocode =
|
|
|
|
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2024-03-03 21:42:59 -05:00
|
|
|
|
}
|