Compare commits

..

No commits in common. "46ab5472f06ed99ff0eafea8d0d942ab657670bf" and "e607242486f6efbff5cd412639d167ef416d8704" have entirely different histories.

3 changed files with 8 additions and 16 deletions

6
flake.lock generated
View File

@ -232,11 +232,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1744463964,
"narHash": "sha256-LWqduOgLHCFxiTNYi3Uj5Lgz0SR+Xhw3kr/3Xd0GPTM=",
"lastModified": 1744098102,
"narHash": "sha256-tzCdyIJj9AjysC3OuKA+tMD/kDEDAF9mICPDU7ix0JA=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2631b0b7abcea6e640ce31cd78ea58910d31e650",
"rev": "c8cd81426f45942bb2906d5ed2fe21d2f19d95b7",
"type": "github"
},
"original": {

View File

@ -87,11 +87,8 @@ in
wireguardPeers = [
{
PublicKey = "GN8lqPBZYOulh6xD4GhkoEWI65HMMCpSxJSH5871YnU=";
AllowedIPs = [
"0.0.0.0/0"
"::0"
];
Endpoint = "psydnd.org:1194";
AllowedIPs = [ "0.0.0.0/0" ];
Endpoint = "coolneng.duckdns.org:1194";
}
];
};
@ -99,14 +96,8 @@ in
matchConfig.Name = "wg0";
linkConfig.ActivationPolicy = "manual";
networkConfig = {
Address = [
"10.8.0.2/32"
"fd00::2/128"
];
DNS = [
"10.8.0.1"
"fd00::2"
];
Address = "10.8.0.2/32";
DNS = "10.8.0.1";
DNSDefaultRoute = true;
};
routingPolicyRules = [

View File

@ -48,6 +48,7 @@ in
texlab
# Text editors
neovim
neovim-remote
emacs-vterm
# Emacs dependencies
(ripgrep.override { withPCRE2 = true; })