summaryrefslogtreecommitdiffstats
path: root/tv/1systems/bu/disks.nix
blob: deabefa7be5ccace40221eaef050e8fed0282a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  boot.initrd.luks.devices.buda2.device = "/dev/sda2";
  fileSystems."/" = {
    device = "buda2/root";
    fsType = "zfs";
  };
  fileSystems."/bku" = {
    device = "buda2/bku";
    fsType = "zfs";
  };
  fileSystems."/home" = {
    device = "buda2/home";
    fsType = "zfs";
  };
  fileSystems."/boot" = {
    device = "/dev/sda1";
    fsType = "vfat";
  };
}