mirror of https://gitlab.crans.org/nounous/nixos
29 lines
457 B
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";
|
|
}
|