summaryrefslogtreecommitdiff
path: root/config/networking.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/networking.nix')
-rw-r--r--config/networking.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/config/networking.nix b/config/networking.nix
new file mode 100644
index 0000000..44464eb
--- /dev/null
+++ b/config/networking.nix
@@ -0,0 +1,15 @@
+{...}: {
+ personal.networking = {
+ enable = true;
+ firewall.http = true;
+ ssh.enable = true;
+ };
+
+ networking = {
+ hostName = "hephaistos";
+ domain = "local";
+
+ useDHCP = false;
+ interfaces."???".useDHCP = true;
+ };
+}