fix(home): plasma module, firefox extensions -> extensions.packages

This commit is contained in:
2025-06-04 00:43:55 +03:00
parent 82eb9ddf97
commit f6c2eac572
2 changed files with 11 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
nativeMessagingHosts = [ pkgs.kdePackages.plasma-browser-integration ];
profiles.default = {
extensions = [ pkgs.nur.repos.rycee.firefox-addons.plasma-integration ];
extensions.packages = [ pkgs.nur.repos.rycee.firefox-addons.plasma-integration ];
settings = {
"widget.use-xdg-desktop-portal.file-picker" = 1;

View File

@@ -15,6 +15,16 @@ in
# Networking
networking.networkmanager.enable = true;
networking.firewall = rec {
allowedTCPPortRanges = [
{
from = 1714;
to = 1764;
}
];
allowedUDPPortRanges = allowedTCPPortRanges;
};
services.openssh.enable = true;
services.tailscale.enable = true;