nixos/shill: Rename atticd mount to harmonia

This commit is contained in:
Jack O'Sullivan 2024-07-20 21:08:44 +01:00
parent 69216c6b4c
commit 9e7294e871
3 changed files with 5 additions and 5 deletions

View File

@ -133,7 +133,7 @@
(vm.lvmDisk "media") (vm.lvmDisk "media")
(vm.lvmDisk "minio") (vm.lvmDisk "minio")
(vm.lvmDisk "nix-atticd") (vm.lvmDisk "nix-cache")
(vm.lvmDisk "jam") (vm.lvmDisk "jam")
]); ]);
}; };

View File

@ -33,7 +33,7 @@ in
{ {
fileSystems = { fileSystems = {
"/var/lib/harmonia" = { "/var/lib/harmonia" = {
device = "/mnt/atticd/harmonia"; device = "/mnt/nix-cache";
options = [ "bind" ]; options = [ "bind" ];
}; };
}; };

View File

@ -94,8 +94,8 @@ in
device = "/dev/disk/by-label/minio"; device = "/dev/disk/by-label/minio";
fsType = "xfs"; fsType = "xfs";
}; };
"/mnt/atticd" = { "/mnt/nix-cache" = {
device = "/dev/disk/by-label/atticd"; device = "/dev/disk/by-label/nix-cache";
fsType = "ext4"; fsType = "ext4";
}; };
}; };
@ -206,7 +206,7 @@ in
object = { object = {
bindMounts = { bindMounts = {
"/mnt/minio".readOnly = false; "/mnt/minio".readOnly = false;
"/mnt/atticd".readOnly = false; "/mnt/nix-cache".readOnly = false;
}; };
}; };
toot = {}; toot = {};