diff --git a/hosts/Anton/data.nix b/hosts/Anton/data.nix index d747664..224b321 100644 --- a/hosts/Anton/data.nix +++ b/hosts/Anton/data.nix @@ -1,19 +1,14 @@ { pkgs, ... }: { - environment.systemPackages = with pkgs; [ - mergerfs - ]; +# environment.systemPackages = with pkgs; [ +# mergerfs +# ]; - fileSystems."/storage" = { - fsType = "fuse.mergerfs"; - device = "/mnt/disks/*"; - options = ["cache.files=partial" "dropcacheonclose=true" "category.create=mfs"]; + fileSystems."/mnt/data" = { + device = "/dev/disk/by-id/wwn-0x500a0751e6b6c60f-part1"; + fsType = "btrfs"; + options = [" noatime=true compress=zstd:12 "]; }; - services.snapraid = { - enable = true; - - }; - -} \ No newline at end of file +} diff --git a/hosts/Anton/default.nix b/hosts/Anton/default.nix index 928904d..b4c837a 100644 --- a/hosts/Anton/default.nix +++ b/hosts/Anton/default.nix @@ -4,8 +4,9 @@ imports = [ ./disko.nix + ./data.nix ./hardware-configuration.nix ]; -} \ No newline at end of file +}