nixos-config/machines/T420-Laptop/hardware-configuration.nix

30 lines
867 B
Nix
Raw Normal View History

2020-02-17 17:00:59 +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.
2020-04-27 05:39:00 +04:00
{ config, lib, pkgs, inputs, ... }:
2020-02-17 17:00:59 +04:00
{
imports =
2020-04-27 05:39:00 +04:00
[ "${inputs.nixpkgs}/nixos/modules/installer/scan/not-detected.nix" ];
2020-02-17 17:00:59 +04:00
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/29edff1b-4457-4d0c-9dfc-2cf5b6afcb46";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/4976-D10F";
fsType = "vfat";
};
swapDevices = [ ];
nix.maxJobs = lib.mkDefault 4;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}