Compare commits

..

1 Commits

Author SHA1 Message Date
Renovate Bot
23f15d2b48 Lock file maintenance 2023-12-11 01:02:34 +00:00
2 changed files with 27 additions and 28 deletions

18
flake.lock generated
View File

@ -39,11 +39,11 @@
}, },
"hardware": { "hardware": {
"locked": { "locked": {
"lastModified": 1702336390, "lastModified": 1702245580,
"narHash": "sha256-BRO8J8QbmyuS0XMh4UfY11akgTGZj1YhkqNvR83JrsI=", "narHash": "sha256-tTVRB42Ljo2uWGP7ei5h5/qQjOsdXoz0GHRy9hrVrdw=",
"owner": "nixos", "owner": "nixos",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "fef05bf9c8e818f4ca1425ef4c18e6680becd072", "rev": "030edbb68e69f2b97231479f98a9597024650df2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -83,11 +83,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1702335531, "lastModified": 1702236723,
"narHash": "sha256-zpqHfNIFCap51drz3sAsa6e1AQU1HALGBWzwwqBdaXE=", "narHash": "sha256-zIEnimM1vhsFkz+Kubb8kJ6YgHuLe56pALOSJc6CMVY=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "ea7569d7e0941d19f5f469a5fbb79bc0fa62b935", "rev": "167f2ed3b2bb18ceeabb831ac80b655ef8e16867",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -173,11 +173,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1702337700, "lastModified": 1702237445,
"narHash": "sha256-JawTBHC8XKmQpMJSuz7AFbICZBeHPm6ADrHM+pV1Zg8=", "narHash": "sha256-gCfV7eIdLghN/1NG2xngn4q0SXPO92cZ4/hPJepCw1w=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nur", "repo": "nur",
"rev": "46e1aa641b2a4109132b6071c1374cf2690643ef", "rev": "444a9b5c426db74aea5e9dc8123705e4cf757815",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,19 +1,18 @@
{ config, ... }: { { config, ... }: {
networking.wireguard = { networking.wireguard = {
enable = true; enable = true;
interfaces = { interfaces = {
wg0 = { wg0 = {
ips = [ config.hostcfg.net.wg.ip4 config.hostcfg.net.wg.ip6 ]; ips = [ config.hostcfg.net.wg.ip4 config.hostcfg.net.wg.ip6 ];
privateKeyFile = config.hostcfg.net.wg.pk; privateKeyFile = config.hostcfg.net.wg.pk;
listenPort = 1515; listenPort = 1515;
mtu = 1340; peers = [{
peers = [{ allowedIPs = [ "10.10.1.0/24" "fd10:10:10::0/64" ];
allowedIPs = [ "10.10.1.0/24" "fd10:10:10::0/64" ]; endpoint = "vpn.helcel.net:1515";
endpoint = "vpn.helcel.net:1515"; publicKey = "NFBJvYXZC+bd62jhrKnM7/pugidWhgR6+C5qIiUiq3Q=";
publicKey = "NFBJvYXZC+bd62jhrKnM7/pugidWhgR6+C5qIiUiq3Q="; persistentKeepalive = 30;
persistentKeepalive = 30; }];
}]; };
}; };
}; };
}; }
}