WIP: Init new backup server; bakke

This commit is contained in:
2024-10-20 01:50:24 +02:00
parent f1f4da9ff6
commit 94818fb037
6 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ config, pkgs, lib, ... }:
{
# Boot drives:
imports = [
./boot-disks.nix
];
# ZFS Data pool:
environment.systemPackages = with pkgs; [ zfs ];
boot = {
zfs = {
extraPools = [ "tank" ];
requestEncryptionCredentials = false;
};
supportedFilesystems = [ "zfs" ];
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
};
services.zfs.autoScrub = {
enable = true;
interval = "Wed *-*-8..14 00:00:00";
};
# NFS Exports:
#TODO
# NFS Import mounts:
#TODO
}