kde connect

framework
Stef Dunlap 11 months ago
parent 92c248e114
commit 195501b005
  1. 19
      conf/workstation.nix
  2. 2
      home/doom.d/init.el
  3. 3
      home/kindrobot.nix

@ -93,6 +93,7 @@
python3Full
qutebrowser
sops
tree
unzip
xsel
];
@ -123,12 +124,18 @@
};
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [
24800 # barrier
];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
networking.firewall = {
enable = true;
allowedTCPPorts = [
24800 # barrier
];
allowedTCPPortRanges = [
{ from = 1714; to = 1764; } # kdeconnect
];
allowedUDPPortRanges = [
{ from = 1714; to = 1764; } # kdeconnect
];
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions

@ -173,7 +173,7 @@
;;swift ; who asked for emoji variables?
;;terra ; Earth and Moon in alignment for performance.
(web +lsp) ; the tubes
;;yaml ; JSON, but readable
yaml ; JSON, but readable
;;zig ; C, but simpler
:email

@ -53,5 +53,8 @@
};
};
programs.z-lua.enable = true;
services.kdeconnect = {
enable = true;
};
}

Loading…
Cancel
Save