nix-dotfiles/machines/galadriel/zfs.nix

20 lines
419 B
Nix
Raw Normal View History

2024-01-14 21:00:30 +01:00
{ config, pkgs, lib, ... }:
{
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.forceImportRoot = false;
networking.hostId = "1ccccd3a";
services.zfs.trim.enable = true;
services.zfs.autoScrub.enable = true;
services.zfs.autoSnapshot.enable = true;
services.zfs.autoSnapshot.flags = "-k -p --utc";
2024-03-22 12:55:22 +01:00
environment.systemPackages = with pkgs; [
2024-01-14 21:00:30 +01:00
zfs
zfsnap
zfstools
zfsbackup
lz4
];
}