nix-files/machines/desko/fs.nix
colin e7f05fa2ec */fs.nix: remove extraneous mkDefaults
these are no longer needed with the new image builder.
2022-06-23 21:21:01 -07:00

18 lines
293 B
Nix

{ ... }:
{
fileSystems."/" = {
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";
};
}