Advertisement
Guest User

Untitled

a guest
Feb 18th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. fileSystems = {
  2. "/" = {
  3. device = "/dev/disk/by-label/root";
  4. fsType = "btrfs";
  5. options = [ "subvol=nixos" "noatime" ];
  6. };
  7.  
  8. "/boot" = lib.mkIf config.boot.loader.grub.enable {
  9. device = "/dev/disk/by-uuid/${bootUuid}";
  10. fsType = "vfat";
  11. };
  12.  
  13. "/storage/DATA" = {
  14. device = "/dev/disk/by-label/PETER";
  15. fsType = "btrfs";
  16. options = commonOptions;
  17. };
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement