Advertisement
Guest User

Untitled

a guest
Dec 14th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. Hardware-configuration.nix
  2. # Do not modify this file! It was generated by ‘nixos-generate-config’
  3. # and may be overwritten by future invocations. Please make changes
  4. # to /etc/nixos/configuration.nix instead.
  5. { config, lib, pkgs, ... }:
  6.  
  7. {
  8. imports =
  9. [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
  10. ];
  11.  
  12. boot.initrd.availableKernelModules = [ "ahci" "ohci_pci" "ehci_pci" "usb_storage" "sd_mod" "sr_mod" "rtsx_usb_sdmmc" ];
  13. boot.kernelModules = [ "kvm-amd" ];
  14. boot.extraModulePackages = [ ];
  15.  
  16. fileSystems."/" =
  17. { device = "/dev/disk/by-uuid/b778e9bf-761c-4654-9d50-87a39423855c";
  18. fsType = "btrfs";
  19. };
  20.  
  21. fileSystems."/boot" =
  22. { device = "/dev/disk/by-uuid/c6e7d017-4c69-4c0d-b63e-47b350aa0e00";
  23. fsType = "ext2";
  24. };
  25.  
  26. swapDevices = [ ];
  27.  
  28. nix.maxJobs = lib.mkDefault 2;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement