Advertisement
Guest User

Untitled

a guest
Jun 14th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. {
  2. fileSystems = {
  3. "/" = {
  4. device = "/dev/disk/by-label/nixos";
  5. fsType = "btrfs";
  6. };
  7. "/home" = {
  8. device = "/dev/disk/by-label/home";
  9. fsType = "btrfs";
  10. };
  11. "/home/username/Видео" = {
  12. device = "/dev/disk/by-uuid/9d1be106-3e62-49e4-9bd8-7e888d995d6f";
  13. fsType = "btrfs";
  14. depends = ["/home"];
  15. options = [
  16. "nodev"
  17. "nosuid"
  18. "subvolid=256"
  19. ];
  20. };
  21. "/home/username/Музыка" = {
  22. device = "/dev/disk/by-uuid/9d1be106-3e62-49e4-9bd8-7e888d995d6f";
  23. fsType = "btrfs";
  24. depends = ["/home"];
  25. options = [
  26. "nodev"
  27. "nosuid"
  28. "noexec"
  29. "subvolid=257"
  30. ];
  31. };
  32. "/home/username/Документы" = {
  33. device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
  34. fsType = "btrfs";
  35. depends = ["/home"];
  36. options = [
  37. "nodev"
  38. "nosuid"
  39. "noexec"
  40. "subvolid=754"
  41. ];
  42. };
  43. "/home/username/Загрузки" = {
  44. device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
  45. fsType = "btrfs";
  46. depends = ["/home"];
  47. options = [
  48. "nodev"
  49. "nosuid"
  50. "noexec"
  51. "subvolid=753"
  52. ];
  53. };
  54. "/home/username/Игры" = {
  55. device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
  56. fsType = "btrfs";
  57. depends = ["/home"];
  58. options = [
  59. "nodev"
  60. "nosuid"
  61. "noexec"
  62. "subvolid=755"
  63. ];
  64. };
  65. "/home/username/Изображения" = {
  66. device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
  67. fsType = "btrfs";
  68. depends = ["/home"];
  69. options = [
  70. "nodev"
  71. "nosuid"
  72. "noexec"
  73. "subvolid=752"
  74. ];
  75. };
  76. "/home/username/Misc" = {
  77. device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
  78. fsType = "btrfs";
  79. depends = ["/home"];
  80. options = [
  81. "nodev"
  82. "nosuid"
  83. "noexec"
  84. "subvolid=757"
  85. ];
  86. };
  87. "/mnt/ps2smb" = {
  88. device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
  89. fsType = "btrfs";
  90. depends = ["/home"];
  91. options = [
  92. "nodev"
  93. "nosuid"
  94. "noexec"
  95. "subvolid=1898"
  96. ];
  97. };
  98. };
  99. swapDevices = [{device = "/dev/disk/by-label/swap";}];
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement