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
commitd873abf0a92c709ec9f79b49fa5d2e5bd244f0ad (patch)
tree8301cc370e440396c636f8d20e2db7272b0800a6 /tv
parented7c330026e48bbde759253f0952a94fdb7e2de6 (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 e66cddea..0fc62167 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;