feat: add hosts module

This commit is contained in:
Michael Thomas 2024-04-17 09:26:51 -04:00
parent a487049887
commit e0a19056d2
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@
./cups.nix ./cups.nix
./flatpak.nix ./flatpak.nix
./fonts.nix ./fonts.nix
./hosts.nix
./nix.nix ./nix.nix
./sound.nix ./sound.nix
]; ];

5
modules/hosts.nix Normal file
View File

@ -0,0 +1,5 @@
{
networking.hosts = {
"150.136.162.107" = ["oracle"];
};
}