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"]; + }; +}