Merge branch 'main' of ssh://git-kb-one-de/kb01/aux-config
Some checks failed
/ Check Nix Flake (push) Failing after 33s

This commit is contained in:
Kaybee 2025-01-26 02:44:23 +01:00
commit 17fce87568
2 changed files with 12 additions and 0 deletions

View file

@ -26,6 +26,7 @@ in {
libreoffice libreoffice
logseq logseq
kmymoney kmymoney
brave
# Security # Security
gnupg gnupg
keepassxc keepassxc
@ -47,6 +48,7 @@ in {
# Messengers # Messengers
element-desktop # Matrix Client element-desktop # Matrix Client
signal-desktop signal-desktop
deltachat-desktop
webcord webcord
# Customization # Customization
firefoxpwa firefoxpwa
@ -62,6 +64,7 @@ in {
yazi # File Management yazi # File Management
taskwarrior3 # Task Manager taskwarrior3 # Task Manager
zk # Notetaking zk # Notetaking
helix # IDE
parted parted
]; ];

View file

@ -36,6 +36,9 @@
# Allow KDE Connect Ports # Allow KDE Connect Ports
networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }]; networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }];
networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }]; networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }];
# Allow Minecraft Ports
#networking.firewall.allowedTCPPorts = [ 25565 19132 ];
#networking.firewall.allowedUDPPorts = [ 25565 19132 ];
# Enable Bluetooth # Enable Bluetooth
hardware.bluetooth.enable = true; # enables support for Bluetooth hardware.bluetooth.enable = true; # enables support for Bluetooth
@ -80,6 +83,12 @@
# Enable SSH-Agent # Enable SSH-Agent
programs.ssh.startAgent = true; programs.ssh.startAgent = true;
# Enable LanguageTool Server
services.languagetool = {
enable = true;
allowOrigin = "*";
};
# Enable sound with pipewire. # Enable sound with pipewire.
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;