aboutsummaryrefslogtreecommitdiff
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
parent39d37116944f2fe9d5ee09183d986622dba62b1a (diff)
guarding my wires
-rw-r--r--.gitignore1
-rw-r--r--flake.lock18
-rw-r--r--hosts/the-meowchine/default.nix19
3 files changed, 28 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore
index 7ad6275..329f92f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/.direnv
+*.key
diff --git a/flake.lock b/flake.lock
index 6f33c60..5e0c695 100644
--- a/flake.lock
+++ b/flake.lock
@@ -7,11 +7,11 @@
]
},
"locked": {
- "lastModified": 1773506317,
- "narHash": "sha256-qWKbLUJpavIpvOdX1fhHYm0WGerytFHRoh9lVck6Bh0=",
+ "lastModified": 1773889306,
+ "narHash": "sha256-PAqwnsBSI9SVC2QugvQ3xeYCB0otOwCacB1ueQj2tgw=",
"owner": "nix-community",
"repo": "disko",
- "rev": "878ec37d6a8f52c6c801d0e2a2ad554c75b9353c",
+ "rev": "5ad85c82cc52264f4beddc934ba57f3789f28347",
"type": "github"
},
"original": {
@@ -27,11 +27,11 @@
]
},
"locked": {
- "lastModified": 1773681856,
- "narHash": "sha256-+bRqxoFCJFO9ZTFhcCkzNXbDT3b8AEk88fyjB7Is6eo=",
+ "lastModified": 1776136611,
+ "narHash": "sha256-b2pu3Pb28W0bJzQVP3OJHZC5+dgOOeqjlli2WVakKEU=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "57d5560ee92a424fb71fde800acd6ed2c725dfce",
+ "rev": "8a423e444b17dde406097328604a64fc7429e34e",
"type": "github"
},
"original": {
@@ -42,11 +42,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1773646010,
- "narHash": "sha256-iYrs97hS7p5u4lQzuNWzuALGIOdkPXvjz7bviiBjUu8=",
+ "lastModified": 1775710090,
+ "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=",
"owner": "nixos",
"repo": "nixpkgs",
- "rev": "5b2c2d84341b2afb5647081c1386a80d7a8d8605",
+ "rev": "4c1018dae018162ec878d42fec712642d214fdfa",
"type": "github"
},
"original": {
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;