os/hosts/pioneer-momo-koeln/configuration.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
595 B
Nix
Raw Normal View History

2023-03-06 23:48:42 +00:00
{ config, lib, pkgs, ... }:
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-03-31 13:20:56 +00:00
2023-03-31 13:58:57 +00:00
./caddy.nix
2023-03-31 13:20:56 +00:00
./keycloak.nix
2023-03-06 23:48:42 +00:00
];
pub-solar.core.lite = true;
time.timeZone = "Europe/Berlin";
networking = {
useDHCP = false;
interfaces.enp1s0.ipv4.addresses = [{
address = "80.244.242.4";
prefixLength = 29;
}];
defaultGateway = "80.244.242.1";
nameservers = [ "95.129.51.51" "80.244.244.244" ];
};
# Enable the OpenSSH daemon.
services.openssh.enable = true;
system.stateVersion = "22.05";
}