nixos-conf/machine-confs/forgejo.nix

13 lines
171 B
Nix
Raw Normal View History

2025-01-15 00:40:42 +02:00
{ ... }:
{
2025-06-04 00:42:30 +03:00
networking.hostName = "forgejo";
2025-01-15 00:40:42 +02:00
imports = [
../base.nix
2025-06-04 00:42:30 +03:00
../services/forgejo.nix
2025-01-15 00:40:42 +02:00
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}