nix-files/machines/desko/fs.nix

18 lines
293 B
Nix
Raw Normal View History

{ ... }:
{
fileSystems."/" = {
2022-06-10 07:32:50 +00:00
device = "/dev/disk/by-uuid/985a0a32-da52-4043-9df7-615adec2e4ff";
fsType = "btrfs";
options = [
"compress=zstd"
"defaults"
];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/CAA7-E7D2";
fsType = "vfat";
};
}