vscode nix lsp, kittykat ssh reverse proxy, obs added, lutris removed due openldap build faliure, flake update
This commit is contained in:
parent
d6216e86c6
commit
0875e05f71
10 changed files with 189 additions and 69 deletions
|
|
@ -22,7 +22,13 @@
|
|||
fastfetch
|
||||
kitty
|
||||
];
|
||||
|
||||
services.openssh = {
|
||||
settings = {
|
||||
AllowTcpForwarding = true;
|
||||
X11Forwarding = true;
|
||||
GatewayPorts = "yes";
|
||||
};
|
||||
};
|
||||
programs.bash.interactiveShellInit = ''
|
||||
PS1="\[\e[38;5;177m\]\u\[\e[0m\]@\[\e[38;5;220m\]\h\[\e[0m\] \[\e[38;5;33m\]\w\[\e[0m\] \$ "
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{config, ...}: {
|
||||
networking.firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [80 443];
|
||||
allowedTCPPorts = [80 443 25565 25567];
|
||||
};
|
||||
networking.firewall.extraInputRules = ''
|
||||
tcp dport 2053 drop
|
||||
|
|
|
|||
|
|
@ -22,6 +22,26 @@
|
|||
xwayland.enable = true;
|
||||
};
|
||||
|
||||
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
|
||||
];
|
||||
};
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
networking.hostName = "virgil";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue