Advertisement
sidneystreith1985

hw.nix

Mar 4th, 2025 (edited)
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. fileSystems."/" =
  2. { device = "/dev/disk/by-label/NIXOS_ROOT"; # <--
  3. fsType = "ext4";
  4. };
  5.  
  6. fileSystems."/boot" =
  7. { device = "/dev/disk/by-label/NIXOS_BOOT"; # <--
  8. fsType = "vfat";
  9. options = [ "fmask=0077" "dmask=0077" ];
  10. };
  11.  
  12. fileSystems."/home" =
  13. { device = "/dev/disk/by-label/NIXOS_HOME"; # <--
  14. fsType = "ext4";
  15. };
  16.  
  17. swapDevices =
  18. [ { device = "/dev/disk/by-label/NIXOS_SWAP"; } # <--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement