nix-config/hosts/data-hoarder/configuration.nix

53 lines
1.8 KiB
Nix
Raw Normal View History

2022-04-23 23:49:00 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, inputs, ... }:
{
# Use the GRUB 2 boot loader.
#boot.loader.grub.enable = true;
#boot.loader.grub.version = 2;
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only
2022-04-23 23:49:00 +02:00
networking.hostName = "data-hoarder"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Set your time zone.
time.timeZone = "Europe/Berlin";
networking.interfaces.ens3 = {
useDHCP = false;
ipv4.addresses = [
{
2022-05-04 22:49:46 +02:00
address = "192.109.108.52";
prefixLength = 27;
}
];
};
2022-04-23 23:49:00 +02:00
networking.defaultGateway = "192.109.108.61";
networking.nameservers = [ "9.9.9.9" ];
2022-04-23 23:49:00 +02:00
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Open ports in the firewall.
2022-05-27 23:49:08 +02:00
networking.firewall.allowedTCPPorts = [ 80 443 22 51820 ];
networking.firewall.trustedInterfaces = [ "wg-dvb" ];
networking.firewall.allowedUDPPorts = [ 22 51820 ];
2022-04-23 23:49:00 +02:00
# Or disable the firewall altogether.
networking.firewall.enable = true;
2022-04-23 23:49:00 +02:00
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
}