2022-06-17 14:13:13 +00: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, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2022-06-18 14:16:12 +00:00
|
|
|
|
imports =
|
2022-06-28 14:08:43 +00:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2022-06-18 14:16:12 +00:00
|
|
|
|
];
|
2022-06-17 14:13:13 +00:00
|
|
|
|
|
2022-06-18 14:16:12 +00:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" "rtsx_usb_sdmmc" ];
|
2022-06-17 14:13:13 +00:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2022-06-28 14:08:43 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/58100870-c0e2-414f-aa8a-2f2cde8ae4da";
|
2022-06-17 14:13:13 +00:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-18 14:46:22 +00:00
|
|
|
|
boot.initrd.luks.devices = {
|
|
|
|
|
crypt-nixos.device = "/dev/disk/by-uuid/4345618c-6968-465f-8ebd-1d76defc0f57";
|
|
|
|
|
crypt-swap.device = "/dev/disk/by-uuid/fa3440af-0354-4299-860e-01a3b012416f";
|
|
|
|
|
};
|
2022-06-18 14:16:12 +00:00
|
|
|
|
|
2022-06-17 14:13:13 +00:00
|
|
|
|
fileSystems."/boot" =
|
2022-06-28 14:08:43 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/01E5-F47D";
|
2022-06-17 14:13:13 +00:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices =
|
2022-06-28 14:08:43 +00:00
|
|
|
|
[{ device = "/dev/disk/by-uuid/9b775e18-ab8c-4647-9ab1-a51391af6d6d"; }];
|
2022-06-17 14:13:13 +00:00
|
|
|
|
|
2023-03-13 13:00:10 +00:00
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
2022-06-17 14:13:13 +00:00
|
|
|
|
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2024-01-15 07:11:48 +00:00
|
|
|
|
|
|
|
|
|
services.tlp.enable = true;
|
2022-06-17 14:13:13 +00:00
|
|
|
|
}
|