51 lines
2.0 KiB
Nix
51 lines
2.0 KiB
Nix
|
# 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 = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
|||
|
|
|||
|
boot.initrd.availableKernelModules =
|
|||
|
[ "xhci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ];
|
|||
|
boot.initrd.kernelModules = [ ];
|
|||
|
boot.kernelModules = [ "kvm-intel" ];
|
|||
|
boot.extraModulePackages = [ ];
|
|||
|
|
|||
|
fileSystems."/" = {
|
|||
|
device = "/dev/disk/by-uuid/6d51e9df-99f3-4eb3-b2da-a1c9b7e405df";
|
|||
|
fsType = "btrfs";
|
|||
|
options = [ "subvol=@" ];
|
|||
|
};
|
|||
|
|
|||
|
boot.initrd.luks.devices."luks-8807caf4-ae17-4b39-93bd-ddfa1f994a47".device =
|
|||
|
"/dev/disk/by-uuid/8807caf4-ae17-4b39-93bd-ddfa1f994a47";
|
|||
|
|
|||
|
# Enable swap on luks
|
|||
|
boot.initrd.luks.devices."luks-c503653d-47de-4914-9e41-d13d14a6cc22".device =
|
|||
|
"/dev/disk/by-uuid/c503653d-47de-4914-9e41-d13d14a6cc22";
|
|||
|
boot.initrd.luks.devices."luks-c503653d-47de-4914-9e41-d13d14a6cc22".keyFile =
|
|||
|
"/crypto_keyfile.bin";
|
|||
|
|
|||
|
fileSystems."/boot/efi" = {
|
|||
|
device = "/dev/disk/by-uuid/9A5C-CE17";
|
|||
|
fsType = "vfat";
|
|||
|
};
|
|||
|
|
|||
|
swapDevices =
|
|||
|
[{ device = "/dev/disk/by-uuid/e20a4e05-44a6-4895-84ef-e3d176931b25"; }];
|
|||
|
|
|||
|
# 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.enp4s0.useDHCP = lib.mkDefault true;
|
|||
|
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
|
|||
|
|
|||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|||
|
hardware.cpu.intel.updateMicrocode =
|
|||
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|||
|
}
|