Add openssh server config

This commit is contained in:
willifan 2024-07-27 23:25:56 +02:00
parent b533102019
commit f8128b6331
5 changed files with 28 additions and 1 deletions

19
hosts/Anton/data.nix Normal file
View file

@ -0,0 +1,19 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mergerfs
];
fileSystems."/storage" = {
fsType = "fuse.mergerfs";
device = "/mnt/disks/*";
options = ["cache.files=partial" "dropcacheonclose=true" "category.create=mfs"];
};
services.snapraid = {
enable = true;
};
}