tv ru: replace zfs by btrfs
This commit is contained in:
parent
ed7c330026
commit
d873abf0a9
|
@ -12,20 +12,23 @@ with import ./lib;
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "main/root";
|
device = "/dev/mapper/ruvg0-root";
|
||||||
fsType = "zfs";
|
fsType = "btrfs";
|
||||||
|
options = ["defaults" "noatime" "compress=zstd"];
|
||||||
};
|
};
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/nvme0n1p1";
|
device = "/dev/nvme0n1p1";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
fileSystems."/home" = {
|
fileSystems."/home" = {
|
||||||
device = "main/home";
|
device = "/dev/mapper/ruvg0-home";
|
||||||
fsType = "zfs";
|
fsType = "btrfs";
|
||||||
|
options = ["defaults" "noatime" "compress=zstd"];
|
||||||
};
|
};
|
||||||
fileSystems."/bku" = {
|
fileSystems."/bku" = {
|
||||||
device = "main/bku";
|
device = "/dev/mapper/ruvg0-bku";
|
||||||
fsType = "zfs";
|
fsType = "btrfs";
|
||||||
|
options = ["defaults" "noatime" "compress=zstd"];
|
||||||
};
|
};
|
||||||
|
|
||||||
krebs.build.host = config.krebs.hosts.ru;
|
krebs.build.host = config.krebs.hosts.ru;
|
||||||
|
|
Loading…
Reference in a new issue