Enabled KDE connect.

This commit is contained in:
vorboyvo 2024-04-14 00:14:12 -04:00
parent d2388df647
commit 0c192e3dcf
3 changed files with 23 additions and 0 deletions

View file

@ -38,6 +38,20 @@
100.119.100.64 sherbrooke
'';
networking.firewall =
let kdeConnectPorts = {
from = 1714;
to = 1764;
}; in
{
allowedTCPPortRanges = [
kdeConnectPorts
];
allowedUDPPortRanges = [
kdeConnectPorts
];
};
# Set your time zone.
time.timeZone = "America/Montreal";

View file

@ -5,6 +5,9 @@ let
extra = ./extra;
terminal = pkgs.alacritty;
in {
imports = [
./programs/kdeconnect.nix
];
home.username = "alice";
home.homeDirectory = "/home/alice";

6
programs/kdeconnect.nix Normal file
View file

@ -0,0 +1,6 @@
{
services.kdeconnect = {
enable = true;
indicator = true;
};
}