System/machines/productivity-vm/hardware.nix

32 lines
1.1 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 =
2023-06-18 04:40:14 -04:00
[ "ata_piix" "mptspi" "uhci_hcd" "sd_mod" "sr_mod" ];
2023-04-25 23:39:37 -04:00
boot.initrd.kernelModules = [ ];
2023-06-18 04:40:14 -04:00
boot.kernelModules = [ ];
2023-04-25 23:39:37 -04:00
boot.extraModulePackages = [ ];
2023-06-18 04:40:14 -04:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/09b33aea-1ba4-45de-9973-bded8dad8ac9";
fsType = "ext4";
2023-04-26 00:32:13 -04:00
};
2023-04-25 23:39:37 -04:00
swapDevices =
2023-06-18 04:40:14 -04:00
[{ device = "/dev/disk/by-uuid/62754f77-dc2f-49f0-9d86-c1f9c9b8fe8f"; }];
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";
}