mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-31 01:17:26 +02:00
Add kdeconnect
This commit is contained in:
parent
25ac7067d8
commit
ab63e7b113
3 changed files with 26 additions and 3 deletions
|
|
@ -26,6 +26,7 @@
|
|||
# Misc progs
|
||||
bitwarden
|
||||
libreoffice-fresh
|
||||
kdeconnect
|
||||
|
||||
# Misc utils
|
||||
wl-clipboard
|
||||
|
|
|
|||
|
|
@ -74,9 +74,27 @@
|
|||
networking.networkmanager.enable = true;
|
||||
programs.noisetorch.enable = true;
|
||||
|
||||
networking.firewall.allowedTCPPorts = [
|
||||
8080
|
||||
];
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [
|
||||
8080
|
||||
8085
|
||||
7878
|
||||
3724
|
||||
];
|
||||
|
||||
allowedTCPPortRanges = [
|
||||
{
|
||||
from = 1714;
|
||||
to = 1764;
|
||||
}
|
||||
];
|
||||
allowedUDPPortRanges = [
|
||||
{
|
||||
from = 1714;
|
||||
to = 1764;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
nix.settings.auto-optimise-store = true;
|
||||
nix.gc = {
|
||||
|
|
|
|||
|
|
@ -99,6 +99,10 @@
|
|||
{command = "thunderbird";}
|
||||
{command = "systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK";}
|
||||
{command = "hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK";}
|
||||
{
|
||||
command = "${pkgs.kdeconnect}/libexec/kdeconnectd";
|
||||
always = true;
|
||||
}
|
||||
];
|
||||
|
||||
workspaces = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue