Updated network topology, setup gateway

This commit is contained in:
Benson Chu 2024-03-06 20:39:41 -06:00
parent da77ce344d
commit b6c58cae6f
2 changed files with 10 additions and 3 deletions

View file

@ -23,6 +23,12 @@
X11Forwarding yes
PasswordAuthentication yes
ChallengeResponseAuthentication yes
Match Address 192.168.0.0/24,!192.168.0.1
X11UseLocalhost yes
X11Forwarding yes
PasswordAuthentication yes
ChallengeResponseAuthentication yes
'';
};

View file

@ -6,7 +6,9 @@
{
imports =
[ # Include the results of the hardware scan.
[
../../common/moms-house
# Include the results of the hardware scan.
./hardware-configuration.nix
];
@ -15,7 +17,7 @@
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.hostName = "nixos"; # Define your hostname.
networking.hostName = "NixGate"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
@ -93,5 +95,4 @@
# 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 = "23.11"; # Did you read the comment?
}