From e0a19056d2196a7c8b6266c78aa60c0aa8520193 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 17 Apr 2024 09:26:51 -0400 Subject: [PATCH] feat: add hosts module --- modules/common.nix | 1 + modules/hosts.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 modules/hosts.nix diff --git a/modules/common.nix b/modules/common.nix index 1ae9d8f..f74e9ce 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -6,6 +6,7 @@ ./cups.nix ./flatpak.nix ./fonts.nix + ./hosts.nix ./nix.nix ./sound.nix ]; diff --git a/modules/hosts.nix b/modules/hosts.nix new file mode 100644 index 0000000..25b3510 --- /dev/null +++ b/modules/hosts.nix @@ -0,0 +1,5 @@ +{ + networking.hosts = { + "150.136.162.107" = ["oracle"]; + }; +}