11 lines
182 B
Nix
11 lines
182 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./gandi.nix
|
|
./postgresql.nix
|
|
inputs.self.nixosModules.monitoring
|
|
inputs.self.nixosModules.nginx
|
|
];
|
|
|
|
networking.useDHCP = true;
|
|
}
|