aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-04-14 07:39:31 -0400
committerRosa <rosaontheweb@proton.me>2026-04-14 07:39:31 -0400
commit073ffdfc02130cd6190f1f95a0f2a734ab0afcb7 (patch)
tree387ef4687b23b98050b024dfe20948026503a130 /hosts
parent39d37116944f2fe9d5ee09183d986622dba62b1a (diff)
guarding my wires
Diffstat (limited to 'hosts')
-rw-r--r--hosts/the-meowchine/default.nix19
1 files changed, 18 insertions, 1 deletions
diff --git a/hosts/the-meowchine/default.nix b/hosts/the-meowchine/default.nix
index fbd993b..bc00e4e 100644
--- a/hosts/the-meowchine/default.nix
+++ b/hosts/the-meowchine/default.nix
@@ -28,7 +28,24 @@
};
};
- networking.networkmanager.enable = true;
+ networking = {
+ networkmanager.enable = true;
+ wireguard.interfaces = {
+ wg0 = {
+ ips = [ "10.6.6.2/24" ];
+ peers = [
+ {
+ allowedIPs = [ "10.6.6.1/24" ];
+ endpoint = "www.eviltransgenders.club:51820";
+ publicKey = "3OpvwguL53lbezCJX2QePtx74SQXrp/Q6SQ8odenZ1M=";
+ }
+ ];
+
+ privateKeyFile = "./the-meowchine.key";
+ };
+ };
+ };
+
programs = {
steam.enable = true;
sway.enable = true;