gsconnect & ssh troubles

This commit is contained in:
Lyes Saadi 2024-11-10 14:44:36 +01:00
parent 6db56b42fb
commit 9c3fc1879c
No known key found for this signature in database
GPG key ID: 17418538BAA17767
4 changed files with 25 additions and 18 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
# Networking
@ -25,9 +25,9 @@
"2620:fe::fe"
"2620:fe::9"
];
extraConfig = ''
DNSOverTLS=yes
'';
# extraConfig = ''
# DNSOverTLS=yes
# '';
};
# Captive portals
@ -37,9 +37,9 @@
};
# Firewall
networking.firewall.allowedTCPPorts = [ 24872 8998 ];
networking.firewall.allowedUDPPorts = [ 24872 8998 ];
# networking.firewall.enable = false;
# networking.firewall.allowedTCPPorts = [ 24872 8998 ];
# networking.firewall.allowedUDPPorts = [ 24872 8998 ];
networking.firewall.enable = false;
# Network services
#services.openssh.enable = true;
@ -53,4 +53,10 @@
# Bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# KDE Connect
programs.kdeconnect = {
enable = true;
package = lib.mkDefault pkgs.gnomeExtensions.gsconnect;
};
}