add kdeconnect

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-09 08:45:58 +01:00
parent c4bbf46dab
commit 4efc3d9af5
4 changed files with 28 additions and 1 deletions

View file

@ -12,4 +12,17 @@
environment.plasma6.excludePackages = with pkgs.kdePackages; [
pkgs.elisa
];
networking.firewall.allowedTCPPortRanges = [
{
from = 1714;
to = 1764;
}
];
networking.firewall.allowedUDPPortRanges = [
{
from = 1714;
to = 1764;
}
];
}

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
{pkgs, nixos-config, ...}: {
imports = [
./firefox
./password-manager.nix
@ -6,8 +6,10 @@
./games
./ims.nix
./audacious.nix
"${nixos-config}/services/desktop"
];
home.packages = with pkgs; [
kdePackages.kontact
];
}

View file

@ -0,0 +1,5 @@
{...}: {
imports = [
./kdeconnect.nix
];
}

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
services.kdeconnect = {
enable = true;
indicator = true;
package = pkgs.kdePackages.kdeconnect-kde;
};
}