2024-01-30 14:21:50 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [v4l2loopback];
|
2024-01-12 22:06:16 +00:00
|
|
|
boot.extraModprobeConfig = ''
|
|
|
|
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
|
|
|
|
'';
|
2024-01-20 08:14:31 +00:00
|
|
|
hardware.opengl.driSupport32Bit = true;
|
2024-01-30 14:21:50 +00:00
|
|
|
hardware.opengl.extraPackages = with pkgs; [amdvlk rocmPackages.clr.icd];
|
|
|
|
hardware.opengl.extraPackages32 = [pkgs.driversi686Linux.amdvlk];
|
2024-02-23 08:39:36 +00:00
|
|
|
networking.wg-quick.interfaces = {
|
|
|
|
protonvpn = {
|
|
|
|
address = ["10.2.0.2/32"];
|
|
|
|
dns = ["10.2.0.1"];
|
|
|
|
privateKeyFile = "/root/wireguard-keys/privatekey";
|
|
|
|
peers = [
|
|
|
|
{
|
|
|
|
publicKey = "ic5vxFWQEX5lRVwgx2vfE1xYKXQuwQi1TGDSkR0fsEY=";
|
|
|
|
# presharedKeyFile = "/root/wireguard-keys/preshared_from_peer0_key";
|
|
|
|
allowedIPs = ["0.0.0.0/0"];
|
|
|
|
endpoint = "146.70.96.66:51820";
|
|
|
|
persistentKeepalive = 25;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-01-12 22:06:16 +00:00
|
|
|
}
|