Files
nix-config/machines/hephaestus/configuration.nix
Dave Gallant 74ae3def04 Add steam-tui
2022-10-29 13:04:35 -04:00

35 lines
555 B
Nix

{
config,
pkgs,
...
}: {
imports = [./hardware.nix];
hardware.opengl.enable = true;
networking = {
hostName = "hephaestus";
interfaces.enp34s0 = {
useDHCP = true;
};
defaultGateway = {
address = "192.168.1.2";
interface = "enp34s0";
};
firewall = {
allowedTCPPorts = [
19999 # netdata
];
allowedUDPPorts = [
41641 # tailscale
];
};
};
services.sshd.enable = true;
services.tailscale.enable = true;
services.xserver.videoDrivers = ["amdgpu"];
}