pub-solar-os/hosts/chocolatebar/hardware-configuration.nix

39 lines
976 B
Nix
Raw Normal View History

2021-06-01 08:55:02 +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, ... }:
{
imports =
[
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbcore" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{
device = "/dev/disk/by-uuid/a3a74208-b244-4268-b374-e58265810fce";
fsType = "ext4";
};
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/afcde41f-9811-4ac8-bb7b-a683844acc5c";
fileSystems."/boot" =
2021-06-01 08:55:02 +00:00
{
device = "/dev/disk/by-uuid/12FD-62A8";
fsType = "vfat";
};
2022-04-30 21:07:18 +00:00
swapDevices = [
{
device = "/swapfile";
size = 68 * 1024; # 68 GB
}
];
2021-06-01 08:55:02 +00:00
}