nixos-config/nixos/hosts/Rias/hardware-configuration.nix

43 lines
1.5 KiB
Nix
Raw Normal View History

2024-04-17 05:52:14 +05: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-08-25 19:10:00 +03:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2024-04-17 05:52:14 +05:00
2024-08-25 19:10:00 +03:00
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
2024-04-17 05:52:14 +05:00
boot.initrd.kernelModules = [ ];
2024-07-31 21:36:30 +03:00
boot.kernelModules = [ "kvm-intel" ];
2024-04-17 05:52:14 +05:00
boot.extraModulePackages = [ ];
2024-08-25 19:10:00 +03:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/c32a41f3-f084-44ea-ac52-179a3bc44bbf";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/F3A3-D76B";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/mnt/D" = {
device = "/dev/disk/by-uuid/EC7C275B7C272036";
fsType = "ntfs";
options = ["umask=0022" "gid=100" "uid=1001"];
};
2024-04-17 05:52:14 +05:00
2024-07-31 21:36:30 +03:00
swapDevices = [ ];
2024-04-17 05:52:14 +05: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;
2024-07-31 21:36:30 +03:00
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
2024-04-17 05:52:14 +05:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2024-07-31 21:36:30 +03:00
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2024-04-17 05:52:14 +05:00
}