stockholm/tv/1systems/bu/disks.nix

16 lines
289 B
Nix
Raw Normal View History

2022-01-04 20:31:21 +00:00
{
boot.initrd.luks.devices.buda2.device = "/dev/sda2";
fileSystems."/" = {
device = "buda2/root";
fsType = "zfs";
};
fileSystems."/home" = {
device = "buda2/home";
fsType = "zfs";
};
fileSystems."/boot" = {
device = "/dev/sda1";
fsType = "vfat";
};
}