mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
Fix vesktop gain
Fix wg mtu
This commit is contained in:
parent
fc8fc85fbe
commit
a66db93e43
2 changed files with 13 additions and 3 deletions
|
|
@ -1,4 +1,14 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
{ pkgs, lib, config, ... }:
|
||||
let
|
||||
vesktop-nogain = (pkgs.vesktop.overrideAttrs (previousAttrs: {
|
||||
patches = previousAttrs.patches ++ [
|
||||
(builtins.fetchurl {
|
||||
url = "https://codeberg.org/muon/gists/raw/branch/main/micfix.patch";
|
||||
sha256 = "18zmq68m5mx3s924iqfbmm8a7r8qbjnw86hvvax2vg8w94g7mrqp";
|
||||
})
|
||||
];
|
||||
}));
|
||||
in {
|
||||
options.mods.social.enable =
|
||||
lib.mkEnableOption "enables social media clients";
|
||||
|
||||
|
|
@ -7,7 +17,7 @@
|
|||
# Communication
|
||||
kotatogram-desktop
|
||||
signal-desktop
|
||||
vesktop
|
||||
vesktop-nogain
|
||||
|
||||
# Video
|
||||
freetube
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
wg0 = {
|
||||
address = [ "10.0.0.2/24" "fdc9:281f:04d7:9ee9::2/64" ];
|
||||
dns = [ "10.0.0.1" "fdc9:281f:04d7:9ee9::1" ];
|
||||
mtu = 1280;
|
||||
mtu = 1500;
|
||||
privateKeyFile = "/home/muon/wireguard-keys/private";
|
||||
|
||||
peers = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue