Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- fileSystems = {
- "/" = {
- device = "/dev/disk/by-label/nixos";
- fsType = "btrfs";
- };
- "/home" = {
- device = "/dev/disk/by-label/home";
- fsType = "btrfs";
- };
- "/home/username/Видео" = {
- device = "/dev/disk/by-uuid/9d1be106-3e62-49e4-9bd8-7e888d995d6f";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "subvolid=256"
- ];
- };
- "/home/username/Музыка" = {
- device = "/dev/disk/by-uuid/9d1be106-3e62-49e4-9bd8-7e888d995d6f";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=257"
- ];
- };
- "/home/username/Документы" = {
- device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=754"
- ];
- };
- "/home/username/Загрузки" = {
- device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=753"
- ];
- };
- "/home/username/Игры" = {
- device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=755"
- ];
- };
- "/home/username/Изображения" = {
- device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=752"
- ];
- };
- "/home/username/Misc" = {
- device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=757"
- ];
- };
- "/mnt/ps2smb" = {
- device = "/dev/disk/by-uuid/afccf2a6-08ab-4260-a55a-ea44e8c25bb6";
- fsType = "btrfs";
- depends = ["/home"];
- options = [
- "nodev"
- "nosuid"
- "noexec"
- "subvolid=1898"
- ];
- };
- };
- swapDevices = [{device = "/dev/disk/by-label/swap";}];
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement