diff options
author | tv <tv@krebsco.de> | 2020-08-26 17:32:32 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-08-26 17:32:32 +0200 |
commit | 0ba7da55339efd015ce131a90585891b777ee892 (patch) | |
tree | f7b4d327c54bc70d2df86578c21e6ac21ef7ca41 | |
parent | 358633f9737c8327d6028ebfadf72cbb51df70fb (diff) |
tv alnus: btrfs -> ext4
-rw-r--r-- | tv/1systems/alnus/config.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tv/1systems/alnus/config.nix b/tv/1systems/alnus/config.nix index 66bd52ab2..4669ac614 100644 --- a/tv/1systems/alnus/config.nix +++ b/tv/1systems/alnus/config.nix @@ -31,12 +31,12 @@ with import <stockholm/lib>; }; "/" = { device = "/dev/mapper/main-root"; - fsType = "btrfs"; + fsType = "ext4"; options = [ "defaults" "noatime" ]; }; "/home" = { device = "/dev/mapper/main-home"; - fsType = "btrfs"; + fsType = "ext4"; options = [ "defaults" "noatime" ]; }; }; |