Advertisement
Guest User

Untitled

a guest
Dec 13th, 2016
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. copying NixOS/Nixpkgs sources...
  2.  
  3. *** Copying ‘/nix/store/2jr0yrapv1j4igmgai0nhddg9naqggg7-nixos-16.09.1229.f52eaf4’ from ‘/tmp/root/nix/store/2jr0yrapv1j4igmgai0nhddg9naqggg7-nixos-16.09.1229.f52eaf4’
  4.  
  5. warning: Nix search path entry ‘/nix/var/nix/profiles/per-user/root/channels’ does not exist, ignoring
  6. created 1 symlinks in user environment
  7. finalising the installation...
  8. updating GRUB 2 menu...
  9. installing the GRUB 2 boot loader on /dev/sda...
  10. Installing for i386-pc platform.
  11. /nix/store/0pfy69722ghxdbfnyfsv9arhbgz09ala-grub-2.x-2015-11-16/sbin/grub-install: warning: this GPT partition label contains no BIOS Boot Partition; embedding won't be possible.
  12. /nix/store/0pfy69722ghxdbfnyfsv9arhbgz09ala-grub-2.x-2015-11-16/sbin/grub-install: warning: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
  13. /nix/store/0pfy69722ghxdbfnyfsv9arhbgz09ala-grub-2.x-2015-11-16/sbin/grub-install: error: will not proceed with blocklists.
  14. /nix/store/s4pr1aqv8g08kbrf5rc16jcry6qr5c17-install-grub.pl: installation of GRUB on /dev/sda failed
  15.  
  16. Configuration.nix:
  17. # Edit this configuration file to define what should be installed on
  18. # your system. Help is available in the configuration.nix(5) man page
  19. # and in the NixOS manual (accessible by running ‘nixos-help’).
  20.  
  21. { config, pkgs, ... }:
  22.  
  23. {
  24. imports =
  25. [ # Include the results of the hardware scan.
  26. ./hardware-configuration.nix
  27. ];
  28.  
  29. # Use the GRUB 2 boot loader.
  30. boot.loader.grub.enable = true;
  31. boot.loader.grub.version = 2;
  32. # boot.loader.grub.efiSupport = true;
  33. # boot.loader.grub.efiInstallAsRemovable = true;
  34. # boot.loader.efi.efiSysMountPoint = "/boot/efi";
  35. # Define on which hard drive you want to install Grub.
  36. boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
  37.  
  38. # networking.hostName = "nixos"; # Define your hostname.
  39. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
  40.  
  41. # Select internationalisation properties.
  42. # i18n = {
  43. # consoleFont = "Lat2-Terminus16";
  44. # consoleKeyMap = "us";
  45. # defaultLocale = "en_US.UTF-8";
  46. # };
  47.  
  48. # Set your time zone.
  49. # time.timeZone = "Europe/Amsterdam";
  50.  
  51. # List packages installed in system profile. To search by name, run:
  52. # $ nix-env -qaP | grep wget
  53. # environment.systemPackages = with pkgs; [
  54. # wget
  55. # ];
  56.  
  57. # List services that you want to enable:
  58.  
  59. # Enable the OpenSSH daemon.
  60. # services.openssh.enable = true;
  61.  
  62. # Enable CUPS to print documents.
  63. # services.printing.enable = true;
  64.  
  65. # Enable the X11 windowing system.
  66. # services.xserver.enable = true;
  67. # services.xserver.layout = "us";
  68. # services.xserver.xkbOptions = "eurosign:e";
  69.  
  70. # Enable the KDE Desktop Environment.
  71. # services.xserver.displayManager.kdm.enable = true;
  72. # services.xserver.desktopManager.kde4.enable = true;
  73.  
  74. # Define a user account. Don't forget to set a password with ‘passwd’.
  75. # users.extraUsers.guest = {
  76. # isNormalUser = true;
  77. # uid = 1000;
  78. # };
  79.  
  80. # The NixOS release to be compatible with for stateful data such as databases.
  81. system.stateVersion = "16.09";
  82.  
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement