nixos/hosts/vm/mediakiwi/default.nix

29 lines
457 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
./mediawiki.nix
../../../modules
../../../modules/crans/nullmailer.nix
];
networking.hostName = "mediakiwi";
boot.loader.grub.devices = [ "/dev/sda" ];
crans = {
enable = true;
networking = {
id = "44";
srvNat.enable = true;
};
# Enable when deploying the real mediakiwi
resticClient.enable = false;
};
system.stateVersion = "25.05";
}