diff options
| author | makefu <github@syntax-fehler.de> | 2023-04-02 18:42:50 +0200 |
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2023-04-02 18:42:50 +0200 |
| commit | 32b74a5a251f7cfee9bb38ccc739b6b319d4eeed (patch) | |
| tree | ccf0540a674a3dbe3ccb50dcc150eaec7b49ed06 /tv/1systems/ru/config.nix | |
| parent | 0e061d7d4481c042d9ba5e2840de8a193a9446fd (diff) | |
| parent | 781012ef25603256368253ef551ca079d25bd730 (diff) | |
Merge remote-tracking branch 'lassul.us/master'
Diffstat (limited to 'tv/1systems/ru/config.nix')
| -rw-r--r-- | tv/1systems/ru/config.nix | 15 |
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; |
