summaryrefslogtreecommitdiffstats
path: root/tv/1systems/ru/config.nix
diff options
context:
space:
mode:
authorlassulus <git@lassul.us>2023-03-25 09:02:04 +0100
committerlassulus <git@lassul.us>2023-03-25 09:02:04 +0100
commit2c80bbb28362fd442ad73ffbcf36796105bf9ae9 (patch)
treec05e424c83a2f4df13ab8888bd680d3dbef9c259 /tv/1systems/ru/config.nix
parente1df63807bd97209535319e573ebe9200103095d (diff)
parent18b7ea4675e69fd564604a845bb60db3794e3042 (diff)
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/1systems/ru/config.nix')
-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 e66cddead..0fc62167e 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;