nixos-conf/hosts/cert-store/configuration.nix

16 lines
309 B
Nix
Raw Normal View History

{ lib, ... }:
2025-01-20 18:28:16 +02:00
{
environment.persistence."/persist".enable = true;
swapDevices = lib.mkForce [ ];
2025-01-20 18:28:16 +02:00
imports = [
../../shared/base.nix
../../shared/hardware/impermanence.nix
2025-06-05 00:33:25 +03:00
../../shared/hardware/vm.nix
../../shared/disko/zfs-impermanence.nix
../../servers/acme-cert-store.nix
2025-01-20 18:28:16 +02:00
];
}