monolith: re-enable old mounts

This commit is contained in:
lelgenio 2024-06-16 13:55:06 -03:00
parent af5a00b926
commit 7f98148366

View file

@ -74,26 +74,26 @@ in
}; };
}; };
# fileSystems."/" = { fileSystems."/mnt/old" = {
# device = "/dev/disk/by-label/BTRFS_ROOT"; device = "/dev/disk/by-label/BTRFS_ROOT";
# fsType = "btrfs"; fsType = "btrfs";
# options = [ "subvol=nixos" ] ++ btrfs_options ++ btrfs_ssd; options = [ "nofail" ] ++ btrfs_options ++ btrfs_ssd;
# }; };
# # boot.initrd.luks.reusePassphrases = true; # boot.initrd.luks.reusePassphrases = true;
# boot.initrd.luks.devices = { boot.initrd.luks.devices = {
# "main" = { "old" = {
# bypassWorkqueues = true; bypassWorkqueues = true;
# device = "/dev/disk/by-label/CRYPT_ROOT"; device = "/dev/disk/by-label/CRYPT_ROOT";
# }; };
# "data" = { "data" = {
# bypassWorkqueues = true; bypassWorkqueues = true;
# device = "/dev/disk/by-label/CRYPT_DATA"; device = "/dev/disk/by-label/CRYPT_DATA";
# }; };
# "bigboy" = { # "bigboy" = {
# bypassWorkqueues = true; # bypassWorkqueues = true;
# device = "/dev/disk/by-label/CRYPT_BIGBOY"; # device = "/dev/disk/by-label/CRYPT_BIGBOY";
# }; # };
# }; };
# boot.loader.efi.efiSysMountPoint = "/boot/efi"; # boot.loader.efi.efiSysMountPoint = "/boot/efi";
# fileSystems."/boot/efi" = { # fileSystems."/boot/efi" = {
# device = "/dev/disk/by-label/NIXBOOT"; # device = "/dev/disk/by-label/NIXBOOT";
@ -104,38 +104,38 @@ in
# fsType = "btrfs"; # fsType = "btrfs";
# options = [ "subvol=home" ] ++ btrfs_options ++ btrfs_ssd; # options = [ "subvol=home" ] ++ btrfs_options ++ btrfs_ssd;
# }; # };
# fileSystems."/home/lelgenio/Games" = { fileSystems."/home/lelgenio/Games" = {
# device = "/dev/disk/by-label/BTRFS_DATA"; device = "/dev/disk/by-label/BTRFS_DATA";
# fsType = "btrfs"; fsType = "btrfs";
# options = [ options = [
# "subvol=@games" "subvol=@games"
# "nofail" "nofail"
# ] ++ btrfs_options; ] ++ btrfs_options;
# }; };
# fileSystems."/home/lelgenio/Downloads/Torrents" = { fileSystems."/home/lelgenio/Downloads/Torrents" = {
# device = "/dev/disk/by-label/BTRFS_DATA"; device = "/dev/disk/by-label/BTRFS_DATA";
# fsType = "btrfs"; fsType = "btrfs";
# options = [ options = [
# "subvol=@torrents" "subvol=@torrents"
# "nofail" "nofail"
# ] ++ btrfs_options; ] ++ btrfs_options;
# }; };
# fileSystems."/home/lelgenio/Música" = { fileSystems."/home/lelgenio/Música" = {
# device = "/dev/disk/by-label/BTRFS_DATA"; device = "/dev/disk/by-label/BTRFS_DATA";
# fsType = "btrfs"; fsType = "btrfs";
# options = [ options = [
# "subvol=@music" "subvol=@music"
# "nofail" "nofail"
# ] ++ btrfs_options; ] ++ btrfs_options;
# }; };
# fileSystems."/home/lelgenio/.local/mount/data" = { fileSystems."/home/lelgenio/.local/mount/data" = {
# device = "/dev/disk/by-label/BTRFS_DATA"; device = "/dev/disk/by-label/BTRFS_DATA";
# fsType = "btrfs"; fsType = "btrfs";
# options = [ options = [
# "subvol=@data" "subvol=@data"
# "nofail" "nofail"
# ] ++ btrfs_options; ] ++ btrfs_options;
# }; };
# fileSystems."/home/lelgenio/.local/mount/bigboy" = { # fileSystems."/home/lelgenio/.local/mount/bigboy" = {
# device = "/dev/disk/by-label/BTRFS_BIGBOY"; # device = "/dev/disk/by-label/BTRFS_BIGBOY";
# fsType = "btrfs"; # fsType = "btrfs";