15 lines
279 B
Nix
15 lines
279 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [ ../disko/zfs-impermanence-backup.nix ];
|
||
|
|
||
|
custom = {
|
||
|
platform = {
|
||
|
impermanence.enable = true;
|
||
|
vm.enable = true;
|
||
|
};
|
||
|
services.zfsBackupServer.enable = true;
|
||
|
};
|
||
|
networking.hostId = "353bc8fd";
|
||
|
system.stateVersion = "25.05";
|
||
|
}
|