summaryrefslogtreecommitdiffstats
path: root/tv/1systems/au/disks.nix
blob: 434de17406e5e5e2ac977fd16b085e3b9b3a6abf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  boot.initrd.luks.devices.main.device = "/dev/sda2";
  fileSystems."/" = {
    device = "/dev/main/root";
    options = ["defaults" "noatime" "commit=60"];
  };
  fileSystems."/boot" = {
    device = "/dev/sda1";
    options = ["defaults" "noatime"];
  };
  fileSystems."/bku" = {
    device = "/dev/main/bku";
    options = ["defaults" "noatime"];
  };
  fileSystems."/home" = {
    device = "/dev/main/home";
    options = ["defaults" "noatime" "commit=60"];
  };
}