mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
36 lines
741 B
Nix
36 lines
741 B
Nix
{
|
|
imports = [
|
|
../common/optional/ephemeral-btrfs.nix
|
|
../common/optional/encrypted-root.nix
|
|
];
|
|
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "sd_mod" ];
|
|
kernelModules = [ "kvm-amd" ];
|
|
};
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
consoleMode = "max";
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
|
|
fileSystems = {
|
|
"/boot" = {
|
|
device = "/dev/disk/by-label/ESP";
|
|
fsType = "vfat";
|
|
};
|
|
};
|
|
|
|
swapDevices = [{
|
|
device = "/swap/swapfile";
|
|
size = 8196;
|
|
}];
|
|
|
|
nixpkgs.hostPlatform.system = "x86_64-linux";
|
|
hardware.cpu.amd.updateMicrocode = true;
|
|
powerManagement.cpuFreqGovernor = "powersave";
|
|
}
|