diff options
| author | Baitinq <[email protected]> | 2022-07-13 20:49:19 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-13 20:49:19 +0200 |
| commit | 5eb94417b55f81841d29354e9881962418c70e1b (patch) | |
| tree | ead099319bb716d696f38083798f405abc54832b /hosts | |
| parent | neovim: Remove plugins (diff) | |
| download | nixos-config-5eb94417b55f81841d29354e9881962418c70e1b.tar.gz nixos-config-5eb94417b55f81841d29354e9881962418c70e1b.tar.bz2 nixos-config-5eb94417b55f81841d29354e9881962418c70e1b.zip | |
fmt
Diffstat (limited to 'hosts')
| -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 }: |