20 lines
388 B
Nix
20 lines
388 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ../../disko/zfs-impermanence.nix ];
|
|
|
|
custom = {
|
|
platform = {
|
|
impermanence.enable = true;
|
|
vm.enable = true;
|
|
};
|
|
services = {
|
|
certStoreServer.enable = true;
|
|
nixCacheClient = {
|
|
enable = true;
|
|
remoteBuilds.exclusive = true;
|
|
};
|
|
};
|
|
};
|
|
networking.hostId = "ba4814a6";
|
|
system.stateVersion = "24.11";
|
|
}
|