49 lines
1.6 KiB
Nix
Executable File
49 lines
1.6 KiB
Nix
Executable File
# 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 = [ ];
|
||
|
||
boot.initrd.availableKernelModules =
|
||
[ "ata_piix" "mptspi" "uhci_hcd" "ehci_pci" "sd_mod" "sr_mod" ];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules =
|
||
[ "vmw_ballon" "vmw_pvscsi" "vmw_vmci" "vmwgfx" "vmxnet3" ];
|
||
boot.extraModulePackages = [ ];
|
||
|
||
fileSystems = {
|
||
"/" = {
|
||
device = "/dev/disk/by-uuid/af524dfe-a89e-4527-908d-eabdb09a3c71";
|
||
fsType = "ext4";
|
||
};
|
||
"/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"
|
||
];
|
||
};
|
||
};
|
||
|
||
swapDevices =
|
||
[{ device = "/dev/disk/by-uuid/6d1d7bfa-676a-4b81-ba92-5ba110375814"; }];
|
||
|
||
# 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";
|
||
hardware.cpu.amd.updateMicrocode =
|
||
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
}
|