nixos-conf/hosts/siit-dc/configuration.nix

16 lines
309 B
Nix
Raw Normal View History

2025-06-29 15:12:28 +03:00
{ lib, ... }:
2025-02-21 02:03:23 +02:00
{
2025-06-29 15:25:07 +03:00
environment.persistence."/persist".enable = true;
2025-06-29 15:12:28 +03:00
swapDevices = lib.mkForce [ ];
2025-02-21 02:03:23 +02:00
imports = [
../../shared/base.nix
2025-06-29 12:39:15 +03:00
../../shared/hardware/impermanence.nix
2025-06-04 23:50:16 +03:00
../../shared/hardware/vm.nix
2025-06-29 12:39:15 +03:00
../../shared/disko/hetzner-zfs-impermanence.nix
2025-06-17 00:32:28 +03:00
../../servers/siit-dc.nix
2025-02-21 02:03:23 +02:00
];
}