Enabled KDE connect.
This commit is contained in:
parent
d2388df647
commit
0c192e3dcf
|
|
@ -38,6 +38,20 @@
|
||||||
100.119.100.64 sherbrooke
|
100.119.100.64 sherbrooke
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
networking.firewall =
|
||||||
|
let kdeConnectPorts = {
|
||||||
|
from = 1714;
|
||||||
|
to = 1764;
|
||||||
|
}; in
|
||||||
|
{
|
||||||
|
allowedTCPPortRanges = [
|
||||||
|
kdeConnectPorts
|
||||||
|
];
|
||||||
|
allowedUDPPortRanges = [
|
||||||
|
kdeConnectPorts
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "America/Montreal";
|
time.timeZone = "America/Montreal";
|
||||||
|
|
||||||
|
|
|
||||||
3
home.nix
3
home.nix
|
|
@ -5,6 +5,9 @@ let
|
||||||
extra = ./extra;
|
extra = ./extra;
|
||||||
terminal = pkgs.alacritty;
|
terminal = pkgs.alacritty;
|
||||||
in {
|
in {
|
||||||
|
imports = [
|
||||||
|
./programs/kdeconnect.nix
|
||||||
|
];
|
||||||
home.username = "alice";
|
home.username = "alice";
|
||||||
home.homeDirectory = "/home/alice";
|
home.homeDirectory = "/home/alice";
|
||||||
|
|
||||||
|
|
|
||||||
6
programs/kdeconnect.nix
Normal file
6
programs/kdeconnect.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
services.kdeconnect = {
|
||||||
|
enable = true;
|
||||||
|
indicator = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue