Advertisement
Guest User

Untitled

a guest
Feb 11th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.38 KB | None | 0 0
  1. { config, pkgs, ... }:
  2.  
  3. {
  4.   imports =
  5.     [ # Include the results of the hardware scan.
  6.       ./hardware-configuration.nix
  7.     ];
  8.  
  9.   boot.loader.grub = {
  10.     enable = false;
  11.   };
  12.  
  13.   boot.initrd.luks.devices.crypted.device = "/dev/disk/by-uuid/b3d91af4-8588-43c9-bd9b-691aa001fa6e";
  14.   fileSystems."/".device = "/dev/mapper/crypted";
  15.  
  16.   system.stateVersion = "16.09";
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement