pin home manager flake input to 23.11 branch

change wireguard endpoint address
permit insecure electron versions due to deprecation
This commit is contained in:
Pim Kunis 2023-12-25 19:32:04 +01:00
parent b616da4a06
commit 10b9c9d716
3 changed files with 64 additions and 33 deletions

View file

@ -6,9 +6,9 @@
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";
services.gnome.gnome-keyring.enable = lib.mkForce false;
services = {
gnome.gnome-keyring.enable = lib.mkForce false;
xserver = {
enable = true;
displayManager.gdm = { enable = true; };
@ -123,11 +123,11 @@
wg-quick.interfaces.home = {
privateKeyFile = config.age.secrets.wg-quick-home-privkey.path;
address = [ "10.225.191.4/24" "fd11:5ee:bad:c0de::4/64" ];
address = [ "10.225.191.4/24" ];
dns = [ "192.168.30.8" ];
peers = [{
presharedKeyFile = config.age.secrets.wg-quick-home-preshared-key.path;
endpoint = "84.245.14.149:51820";
endpoint = "wg.geokunis2.nl:51820";
publicKey = "fa3mQ7ximJbH7cu2ZbWidto5xBGxEEfWvCCiUDk00Hg=";
allowedIPs = [ "0.0.0.0/0" "::0/0" ];
}];
@ -141,4 +141,8 @@
setSocketVariable = true;
};
};
nixpkgs.config.permittedInsecurePackages = [
"electron-25.9.0"
];
}