diff options
-rw-r--r-- | hosts/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index bdba1f8..d249bcb 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -3,9 +3,9 @@ let secrets = import ../secrets; hosts = [ - { hostname = "phobos"; system = "x86_64-linux"; timezone=secrets.main_timezone; location = secrets.main_location; } - { hostname = "luna"; system = "x86_64-linux"; timezone=secrets.main_timezone; location = secrets.main_location; } - { hostname = "vm"; system = "x86_64-linux"; timezone=secrets.main_timezone; location = secrets.main_location; } + { hostname = "phobos"; system = "x86_64-linux"; timezone = secrets.main_timezone; location = secrets.main_location; } + { hostname = "luna"; system = "x86_64-linux"; timezone = secrets.main_timezone; location = secrets.main_location; } + { hostname = "vm"; system = "x86_64-linux"; timezone = secrets.main_timezone; location = secrets.main_location; } ]; mkHost = { hostname, system, timezone, location }: |