51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
# Core filesystems
|
|
fileSystems."/" =
|
|
{ device = "/dev/disk/by-uuid/75addc56-2a0d-431e-a0c5-f6ee0e370e61";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" =
|
|
{ device = "/dev/disk/by-uuid/610F-1EB7";
|
|
fsType = "vfat";
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|
};
|
|
|
|
# ZFS filesystems
|
|
fileSystems."/pool/tvb" =
|
|
{ device = "pool/user/tvb";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/pool/tvb/doc" =
|
|
{ device = "pool/user/tvb/doc";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/pool/tvb/game" =
|
|
{ device = "pool/user/tvb/game";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/pool/tvb/video" =
|
|
{ device = "pool/user/tvb/video";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/pool/tvb/audio" =
|
|
{ device = "pool/user/tvb/audio";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/pool/tvb/image" =
|
|
{ device = "pool/user/tvb/image";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
swapDevices =
|
|
[ { device = "/dev/disk/by-uuid/cc464bb4-e1c8-46c0-adbb-ea1a3cfa5b03"; }
|
|
];
|
|
}
|