nixos-conf/hosts/forgejo/configuration.nix

16 lines
216 B
Nix
Raw Normal View History

2025-01-15 00:40:42 +02:00
{ ... }:
{
2025-06-30 01:56:57 +03:00
swapDevices = [
{
device = "/var/lib/swapfile";
size = 2 * 1024;
}
];
2025-01-15 00:40:42 +02:00
imports = [
2025-06-05 00:29:40 +03:00
../../shared/base.nix
../../shared/hardware/vm.nix
../../servers/forgejo.nix
2025-01-15 00:40:42 +02:00
];
}