25 lines
425 B
Nix
25 lines
425 B
Nix
{
|
|
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";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
zfs
|
|
zfsnap
|
|
zfstools
|
|
zfsbackup
|
|
lz4
|
|
];
|
|
|
|
}
|