summaryrefslogtreecommitdiffstats
path: root/tv
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2023-03-15 18:49:24 +0100
committertv <tv@krebsco.de>2023-03-15 18:49:24 +0100
commitcc8480f754039d416fac22a38e8218a2cb107b50 (patch)
treefeef27de0a7d3329166d59abfe7b561e0ab53eec /tv
parent3a2db935a3b3565fb17b38e2eede929240241fc2 (diff)
tv ru: replace zfs by btrfs
Diffstat (limited to 'tv')
-rw-r--r--tv/1systems/ru/config.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/tv/1systems/ru/config.nix b/tv/1systems/ru/config.nix
index e66cdde..0fc6216 100644
--- a/tv/1systems/ru/config.nix
+++ b/tv/1systems/ru/config.nix
@@ -12,20 +12,23 @@ with import ./lib;
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
- device = "main/root";
- fsType = "zfs";
+ device = "/dev/mapper/ruvg0-root";
+ fsType = "btrfs";
+ options = ["defaults" "noatime" "compress=zstd"];
};
fileSystems."/boot" = {
device = "/dev/nvme0n1p1";
fsType = "vfat";
};
fileSystems."/home" = {
- device = "main/home";
- fsType = "zfs";
+ device = "/dev/mapper/ruvg0-home";
+ fsType = "btrfs";
+ options = ["defaults" "noatime" "compress=zstd"];
};
fileSystems."/bku" = {
- device = "main/bku";
- fsType = "zfs";
+ device = "/dev/mapper/ruvg0-bku";
+ fsType = "btrfs";
+ options = ["defaults" "noatime" "compress=zstd"];
};
krebs.build.host = config.krebs.hosts.ru;