mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2024-12-22 12:07:29 +01:00
33 lines
671 B
Nix
33 lines
671 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
# Boot drives are defined in ./hardware-configuration.nix
|
|
|
|
environment.systemPackages = with pkgs; [ cifs-utils ];
|
|
|
|
# Local zfs
|
|
boot = {
|
|
zfs = {
|
|
extraPools = [ "tank" ];
|
|
requestEncryptionCredentials = false;
|
|
};
|
|
supportedFilesystems = [ "zfs" ];
|
|
};
|
|
services.zfs.autoScrub = {
|
|
enable = true;
|
|
interval = "Wed *-*-8..14 00:00:00";
|
|
};
|
|
|
|
# fileSystems = {
|
|
# "/mnt/feal-syn1/backup" = {
|
|
# device = "feal-syn1.home.feal.no:/volume2/backup";
|
|
# fsType = "nfs";
|
|
# options = [
|
|
# "defaults"
|
|
# "noatime"
|
|
# "rw"
|
|
# "nfsvers=3"
|
|
# ];
|
|
# };
|
|
# };
|
|
}
|