System/machines/productivity-vm/hardware.nix

49 lines
1.6 KiB
Nix
Raw Normal View History

2023-04-25 23:39:37 -04: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, ... }:
{
imports = [ ];
2023-04-26 00:32:13 -04:00
boot.initrd.availableKernelModules =
[ "ata_piix" "mptspi" "uhci_hcd" "ehci_pci" "sd_mod" "sr_mod" ];
2023-04-25 23:39:37 -04:00
boot.initrd.kernelModules = [ ];
2023-04-26 00:50:44 -04:00
boot.kernelModules =
[ "vmw_ballon" "vmw_pvscsi" "vmw_vmci" "vmwgfx" "vmxnet3" ];
2023-04-25 23:39:37 -04:00
boot.extraModulePackages = [ ];
2023-04-26 00:32:13 -04:00
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/af524dfe-a89e-4527-908d-eabdb09a3c71";
2023-04-25 23:39:37 -04:00
fsType = "ext4";
};
2023-04-26 00:32:13 -04:00
"/mnt/hgfs" = {
device = ".host:/";
fsType = "fuse./run/current-system/sw/bin/vmhgfs-fuse";
options = [
"umask=22"
"uid=1000"
"gid=1000"
"allow_other"
"defaults"
"auto_unmount"
];
};
};
2023-04-25 23:39:37 -04:00
swapDevices =
2023-04-26 00:32:13 -04:00
[{ device = "/dev/disk/by-uuid/6d1d7bfa-676a-4b81-ba92-5ba110375814"; }];
2023-04-25 23:39:37 -04: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;
# networking.interfaces.ens33.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2023-04-26 00:32:13 -04:00
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2023-04-25 23:39:37 -04:00
}