10 lines
112 B
Nix
10 lines
112 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./nginx.nix
|
||
|
./postgresql.nix
|
||
|
./woodpecker-server.nix
|
||
|
];
|
||
|
}
|