41 lines
1006 B
Nix
41 lines
1006 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
|
../configuration.nix
|
|
../games.nix
|
|
../extra.nix
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
boot.extraModulePackages = [ pkgs.linuxPackages.rtl8814au ];
|
|
boot.loader.grub.efiSupport = true;
|
|
boot.loader.grub.device = "nodev";
|
|
boot.loader.grub.enable = true;
|
|
hardware.facetimehd.enable = true;
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-label/EFI";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
fileSystems."/" =
|
|
{ device = "/dev/disk/by-uuid/2958f04b-8387-4a0c-abc1-f12036c53581";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/tmp" =
|
|
{ device = "tmpfs";
|
|
fsType = "tmpfs";
|
|
};
|
|
|
|
networking.hostName = "uber-loaner";
|
|
swapDevices = [ ];
|
|
|
|
nix.maxJobs = lib.mkDefault 4;
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
users.extraUsers.root.initialHashedPassword = "";
|
|
}
|