nix-files/hosts/by-name/moby/fs.nix

19 lines
333 B
Nix
Raw Normal View History

{ ... }:
{
2023-01-06 10:04:51 +00:00
sane.persist.root-on-tmpfs = true;
2022-08-02 23:02:14 +00:00
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/1f1271f8-53ce-4081-8a29-60a4a6b5d6f9";
fsType = "btrfs";
options = [
"compress=zstd"
"defaults"
];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/0299-F1E5";
fsType = "vfat";
};
}