nixos-conf/machine-confs/forgejo.nix

13 lines
177 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 = [
2025-05-29 15:39:42 +03:00
../shared/base.nix
2025-05-29 02:12:20 +03:00
../servers/forgejo.nix
2025-01-15 00:40:42 +02:00
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}