Files
nix-config/modules/machines/hephaestus/configuration.nix
Dave Gallant 79e24d9807 Revert "Switch to nvidia display"
This reverts commit f6b1fe94e4.
2024-02-16 15:15:51 -05:00

30 lines
441 B
Nix

{
config,
pkgs,
...
}: {
imports = [./hardware.nix];
hardware.opengl.enable = true;
nixpkgs.config.allowUnfree = true;
networking = {
hostName = "hephaestus";
interfaces.enp34s0 = {
useDHCP = true;
};
firewall = {
allowedUDPPorts = [
41641 # tailscale
];
};
};
services = {
sshd.enable = true;
tailscale.enable = true;
xserver.videoDrivers = ["amdgpu"];
};
}