Advertisement
Guest User

Untitled

a guest
Jan 26th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # Do not modify this file! It was generated by ‘nixos-generate-config’
  2. # and may be overwritten by future invocations. Please make changes
  3. # to /etc/nixos/configuration.nix instead.
  4. { config, lib, pkgs, ... }:
  5.  
  6. {
  7. imports =
  8. [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
  9. ];
  10.  
  11. boot.initrd.availableKernelModules = [ "xhci_pci" "usb_storage" "usbhid" "sd_mod" "sdhci_acpi" ];
  12. boot.kernelModules = [ "kvm-intel" ];
  13. boot.extraModulePackages = [ ];
  14.  
  15. fileSystems."/" =
  16. { device = "/dev/disk/by-uuid/7d69fae9-be38-43d4-a8fc-bc9cd190489c";
  17. fsType = "ext4";
  18. };
  19.  
  20. fileSystems."/boot" =
  21. { device = "/dev/disk/by-uuid/C14E-7E29";
  22. fsType = "vfat";
  23. };
  24.  
  25. swapDevices =
  26. [ { device = "/dev/disk/by-uuid/4c292d4a-e0c5-4332-8c7a-e2b955c40382"; }
  27. ];
  28.  
  29. nix.maxJobs = lib.mkDefault 4;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement