nix-configs/systems/zeus/hardware-configuration.nix

79 lines
2.1 KiB
Nix
Raw Normal View History

2024-04-25 20:43:21 -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, ... }:
{
2024-05-11 12:51:25 -04:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2024-04-25 20:43:21 -04:00
2024-05-11 12:51:25 -04:00
boot.initrd.availableKernelModules =
[ "ohci_pci" "ehci_pci" "sata_nv" "sd_mod" ];
2024-04-25 20:43:21 -04:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
2024-05-11 12:51:25 -04:00
fileSystems."/" = {
2024-05-31 20:04:28 -04:00
device = "none";
fsType = "tmpfs";
options = [ "defaults" "mode=755" ];
neededForBoot = true;
};
fileSystems."/persist" = {
2024-05-11 12:51:25 -04:00
device = "zroot/root";
fsType = "zfs";
};
fileSystems."/boot" = {
device = "zboot/boot";
fsType = "zfs";
};
fileSystems."/home" = {
device = "zroot/home";
fsType = "zfs";
};
fileSystems."/nix" = {
device = "zroot/nix";
fsType = "zfs";
};
fileSystems."/var" = {
device = "zroot/var";
fsType = "zfs";
};
fileSystems."/video-data" = {
device = "rpool/video-data";
fsType = "zfs";
};
2024-05-27 13:00:39 -04:00
fileSystems."/efi" = {
device = "/dev/disk/by-uuid/6ED6-2ED0";
2024-05-26 21:11:52 -04:00
fsType = "vfat";
2024-05-27 13:00:39 -04:00
options = [ "nofail" ];
};
fileSystems."/efi1" = {
device = "/dev/disk/by-uuid/6A4C-BAFE";
fsType = "vfat";
options = [ "nofail" ];
2024-05-26 21:11:52 -04:00
};
2024-05-11 12:51:25 -04:00
swapDevices = [
{ device = "/dev/disk/by-uuid/aecf6400-9c9f-43f9-8c57-08f3c8a633e7"; }
{ device = "/dev/disk/by-uuid/3fca7d18-441c-4f39-adad-ffd882b1f210"; }
];
2024-04-25 20:43:21 -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 false;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2024-05-11 12:51:25 -04:00
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2024-04-25 20:43:21 -04:00
}