From 13c7a7209f4bea221cbec2a06af0af0c4f6355bc Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Sat, 6 May 2023 10:36:52 -0700 Subject: [PATCH] Added server aliases to hosts --- hosts/desktop/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index 5fea5f4..fd05e1c 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -5,6 +5,10 @@ imports = [ ./hardware-configuration.nix ]; + + networking.hosts = { + "10.0.0.183" = [ "files.nickiel.net" "git.nickiel.net" "nickiel.net" "jellyfin.nickiel.net" ]; + }; services.xserver.videoDrivers = [ "nvidia" ]; hardware.opengl.enable = true;