33 lines
879 B
Nix
Raw Normal View History

2020-08-04 01:46:48 +04: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.
2020-08-05 04:52:30 +04:00
{ config, lib, pkgs, modulesPath, ... }:
2020-08-04 01:46:48 +04:00
{
imports = [ ];
2020-08-05 04:52:30 +04:00
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" ];
2020-08-04 01:46:48 +04:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
2020-08-05 04:52:30 +04:00
{ device = "/dev/disk/by-uuid/9affc545-6755-4b5b-b820-36ebb1119330";
2020-08-04 01:46:48 +04:00
fsType = "f2fs";
};
fileSystems."/boot" =
2020-08-05 04:52:30 +04:00
{ device = "/dev/disk/by-uuid/4D6C-D3AB";
2020-08-04 01:46:48 +04:00
fsType = "vfat";
};
2020-08-05 04:52:30 +04:00
swapDevices = [
{
device = "/dev/disk/by-partuuid/5ff8b0ed-a111-4399-916a-8e49ccb3dd4d";
randomEncryption.enable = true;
}
];
2020-08-04 01:46:48 +04:00
virtualisation.virtualbox.guest.enable = true;
}