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

18
flake.lock generated
View file

@ -39,11 +39,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1730161780, "lastModified": 1730886862,
"narHash": "sha256-z5ILcmwMtiCoHTXS1KsQWqigO7HJO8sbyK7f7wn9F/E=", "narHash": "sha256-wCZtRGM1NGxq6VG4+TMzfsa4cuG2VJVtowtYuWW5W3g=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "07d15e8990d5d86a631641b4c429bc0a7400cfb8", "rev": "90642a0deae927fa911d49d4f7c5616257105141",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -55,11 +55,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1729973466, "lastModified": 1730741070,
"narHash": "sha256-knnVBGfTCZlQgxY1SgH0vn2OyehH9ykfF8geZgS95bk=", "narHash": "sha256-edm8WG19kWozJ/GqyYx2VjW99EdhjKwbY3ZwdlPAAlo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cd3e8833d70618c4eea8df06f95b364b016d4950", "rev": "d063c1dd113c91ab27959ba540c0d9753409edf3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -71,11 +71,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1729880355, "lastModified": 1730785428,
"narHash": "sha256-RP+OQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM=", "narHash": "sha256-Zwl8YgTVJTEum+L+0zVAWvXAGbWAuXHax3KzuejaDyo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "18536bf04cd71abd345f9579158841376fdd0c5a", "rev": "4aa36568d413aca0ea84a1684d2d46f55dbabad7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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

View file

@ -126,7 +126,8 @@
virtualisation.libvirtd.enable = true; virtualisation.libvirtd.enable = true;
# virtualisation.virtualbox.host.enable = true; # virtualisation.virtualbox.host.enable = true;
# virtualisation.virtualbox.host.enableExtensionPack = true; # virtualisation.virtualbox.host.enableExtensionPack = true;
users.extraGroups.vboxusers.members = [ "lyes" ]; # users.extraGroups.vboxusers.members = [ "lyes" ];
virtualisation.waydroid.enable = true;
# Containers # Containers
virtualisation.containers.enable = true; virtualisation.containers.enable = true;

View file

@ -105,7 +105,7 @@ in {
gnome-extension-manager gnome-extension-manager
adw-gtk3 adw-gtk3
paper-icon-theme paper-icon-theme
gnomeExtensions.gsconnect # gnomeExtensions.gsconnect
# Programming # Programming
git git