diff options
Diffstat (limited to 'hosts/mercury/config.nix')
| -rw-r--r-- | hosts/mercury/config.nix | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/hosts/mercury/config.nix b/hosts/mercury/config.nix index e9c7d9e..f996be9 100644 --- a/hosts/mercury/config.nix +++ b/hosts/mercury/config.nix @@ -1,8 +1,27 @@ -{ +{config, ...}: { collinux = { theme = "catppuccin"; user.name = "collin"; + secrets = { + "wg-key".file = ./mercury-wg-key.age; + }; + + wireguard = { + enable = true; + ip = "100.100.0.5"; + gateway = "100.100.0.1"; + privateKeyFile = config.collinux.secrets."wg-key".path; + peers = [ + { + # ganymede + publicKey = "WNLf8M6JGSHeRVvbAF6E/6oxAHeNxv6bXqqlmwMdvlk="; + ip = "100.100.0.0/24"; + endpoint = "williamsfam.us.com:51820"; + } + ]; + }; + desktop = { wallpaper = ./wallpapers/abstract-swirls.jpg; gtk.enable = true; |
