13 lines
248 B
Nix
13 lines
248 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./gandi.nix
|
|
inputs.self.nixosModules.monitoring
|
|
inputs.srvos.nixosModules.mixins-nginx
|
|
];
|
|
|
|
networking.useDHCP = true;
|
|
|
|
# enabled by default for stateVersion < 23.11
|
|
boot.swraid.enable = false;
|
|
}
|