whatever and 26.11
This commit is contained in:
parent
157eb28a5e
commit
9cb34f0e22
10 changed files with 98 additions and 110 deletions
|
|
@ -6,5 +6,6 @@
|
|||
./spicetify.nix
|
||||
./browsers/zen.nix
|
||||
./vscode.nix
|
||||
./obs.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
25
modules/home-manager/desktop/obs.nix
Normal file
25
modules/home-manager/desktop/obs.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
|
||||
# optional Nvidia hardware acceleration
|
||||
package = (
|
||||
pkgs.obs-studio.override {
|
||||
cudaSupport = true;
|
||||
}
|
||||
);
|
||||
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
wlrobs
|
||||
obs-backgroundremoval
|
||||
obs-pipewire-audio-capture
|
||||
obs-vaapi #optional AMD hardware acceleration
|
||||
obs-gstreamer
|
||||
obs-vkcapture
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
home.username = "tulg";
|
||||
home.homeDirectory = "/home/tulg";
|
||||
home.stateVersion = "25.05";
|
||||
gtk.gtk4.theme = config.gtk.theme; # sybau
|
||||
#gtk.gtk4.theme = config.gtk.theme; # sybau
|
||||
programs.firefox.configPath = ".mozilla/firefox"; # sybau mozilla shitbox
|
||||
|
||||
programs.vesktop.enable = true;
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
mako
|
||||
feh
|
||||
librewolf
|
||||
zellij
|
||||
|
||||
element-desktop
|
||||
piper
|
||||
libratbag
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@
|
|||
port = 2053;
|
||||
openFirewall = false;
|
||||
};
|
||||
networking.firewall.allowedTCPPorts = [45544 22];
|
||||
networking.firewall.allowedTCPPorts = [45544 22 25565 27036];
|
||||
networking.firewall.allowedUDPPorts = [27015 27031 27032 27033 27034 27035 27036];
|
||||
services.traefik.dynamicConfigOptions.http = {
|
||||
routers.xray = {
|
||||
rule = "Host(`v2.kittykat.poggerer.xyz`)";
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ in {
|
|||
enable = true;
|
||||
interfaces.tun0.allowedUDPPorts = zomboidUdpPorts;
|
||||
interfaces.tun0.allowedTCPPorts = minecraftTcpPorts;
|
||||
allowedTCPPorts = [22 25565];
|
||||
};
|
||||
|
||||
systemd.services.ssh-tun-kittykat = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue