32 lines
533 B
Nix
32 lines
533 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
elisa
|
|
];
|
|
|
|
home-manager.users.mysaa.home.file.".config/kdeglobals".text = lib.generators.toINI { } {
|
|
KDE = {
|
|
SingleClick = true;
|
|
};
|
|
};
|
|
|
|
home-manager.users.mysaa.services.kdeconnect.enable = true;
|
|
# We open kdeconnect ports
|
|
networking.firewall = rec {
|
|
allowedTCPPortRanges = [
|
|
{
|
|
from = 1714;
|
|
to = 1764;
|
|
}
|
|
];
|
|
allowedUDPPortRanges = allowedTCPPortRanges;
|
|
};
|
|
|
|
}
|