46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||
|
];
|
||
|
|
||
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" "uas" "sd_mod" ];
|
||
|
boot.initrd.kernelModules = [ ];
|
||
|
boot.kernelModules = [ "kvm-amd" ];
|
||
|
boot.extraModulePackages = [ ];
|
||
|
|
||
|
fileSystems."/" =
|
||
|
{
|
||
|
device = "none";
|
||
|
fsType = "tmpfs";
|
||
|
options = [ "defaults" "size=50%" "mode=755" ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/boot" =
|
||
|
{
|
||
|
device = "/dev/disk/by-uuid/7BD4-96D5";
|
||
|
fsType = "vfat";
|
||
|
options = [ "fmask=0022" "dmask=0022" ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/nix" =
|
||
|
{
|
||
|
device = "/dev/disk/by-uuid/b1377283-89a6-434b-8315-60314dcd56ab";
|
||
|
fsType = "btrfs";
|
||
|
neededForBoot = true;
|
||
|
};
|
||
|
|
||
|
boot.initrd.luks.devices."nix".device = "/dev/disk/by-uuid/51f9bf11-5b38-4753-b927-2ff3e01dd5e0";
|
||
|
boot.initrd.luks.devices."swap".device = "/dev/disk/by-uuid/2c2f9f9d-0eca-4375-b284-108564c48af8";
|
||
|
|
||
|
swapDevices =
|
||
|
[{ device = "/dev/mapper/swap"; }];
|
||
|
|
||
|
networking.useDHCP = lib.mkDefault true;
|
||
|
|
||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
}
|