nixos/systems/gwyn/default.nix

40 lines
845 B
Nix
Raw Normal View History

2021-12-28 23:05:17 +01:00
{ lib, ... }:
2021-11-16 20:57:04 +01:00
{
boot.initrd.availableKernelModules = [
2021-11-29 18:38:28 +01:00
"aesni_intel"
"ahci"
"cryptd"
2021-11-29 18:44:15 +01:00
"nvme"
"rtsx_pci_sdmmc"
2021-11-29 18:38:28 +01:00
"sd_mod"
2021-11-29 18:44:15 +01:00
"sr_mod"
"usbhid"
2021-11-29 18:38:28 +01:00
"usb_storage"
"xhci_pci"
];
2021-11-22 15:12:19 +01:00
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-intel" ];
2021-11-16 20:57:04 +01:00
boot.extraModulePackages = [ ];
boot.kernelParams = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
2021-11-29 18:38:28 +01:00
boot.initrd.luks.devices."cryptlvm".device = "/dev/nvme0n1p2";
2021-11-16 20:57:04 +01:00
2022-01-03 20:29:08 +01:00
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
2022-01-10 20:58:26 +01:00
networking.hostName = "gwyn"; # Define your hostname.
2022-01-03 20:29:08 +01:00
swapDevices = [
{ device = "/dev/disk/by-label/swap"; }
];
2022-01-10 20:58:26 +01:00
virtualisation.virtualbox.host.enable = true;
2021-11-16 20:57:04 +01:00
}
2021-11-22 15:12:19 +01:00