blob: 799c3535492dbf292c0950427081161efbaf1962 [file] [log] [blame]
Skyler Grey1e2187f2023-03-03 22:45:10 +00001# Do not modify this file! It was generated by ‘nixos-generate-config’
2# and may be overwritten by future invocations. Please make changes
3# to /etc/nixos/configuration.nix instead.
4{ config, lib, pkgs, ... }:
5
6{
Skyler Greyfe1740c2023-10-21 01:24:18 +00007 boot.initrd.availableKernelModules =
8 [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ];
Skyler Grey1e2187f2023-03-03 22:45:10 +00009 boot.initrd.kernelModules = [ ];
10 boot.kernelModules = [ "kvm-amd" ];
11 boot.extraModulePackages = [ ];
12
Skyler Greyfe1740c2023-10-21 01:24:18 +000013 fileSystems."/" = {
14 device = "/dev/disk/by-uuid/33e79acf-16a4-4263-be79-792c9432568c";
15 fsType = "ext4";
16 };
Skyler Grey1e2187f2023-03-03 22:45:10 +000017
Skyler Greyfe1740c2023-10-21 01:24:18 +000018 fileSystems."/boot" = {
19 device = "/dev/disk/by-uuid/4EB3-743A";
20 fsType = "vfat";
21 };
Skyler Grey1e2187f2023-03-03 22:45:10 +000022
23 swapDevices =
Skyler Grey4f3e6062023-03-04 01:29:29 +000024 [{ device = "/dev/disk/by-uuid/3f3ddaa2-80c8-4915-83fe-fcec42bb877c"; }];
Skyler Grey1e2187f2023-03-03 22:45:10 +000025
26 # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
27 # (the default) this is the recommended approach. When using systemd-networkd it's
28 # still possible to use this option, but it's recommended to use it in conjunction
29 # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
30 networking.useDHCP = lib.mkDefault true;
31 # networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
32
33 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
Skyler Greyfe1740c2023-10-21 01:24:18 +000034 hardware.cpu.amd.updateMicrocode =
35 lib.mkDefault config.hardware.enableRedistributableFirmware;
Skyler Grey1e2187f2023-03-03 22:45:10 +000036}