From 916e1c19146eebe7b355b365bfa86daf49471853 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Fri, 26 Jan 2024 18:37:20 +0300 Subject: [PATCH] Home : Add Gnome RDP support. --- .config/linux/system/home/Configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/linux/system/home/Configuration.nix b/.config/linux/system/home/Configuration.nix index 8db01f8..65ddf4c 100644 --- a/.config/linux/system/home/Configuration.nix +++ b/.config/linux/system/home/Configuration.nix @@ -49,6 +49,12 @@ # Disable ftpd autostart. systemd.services.vsftpd.wantedBy = lib.mkForce [ ]; + # Gnome RDP. + environment.systemPackages = with pkgs; [ + openssl + gnome.gnome-remote-desktop + ]; + # Do not touch ever. system.stateVersion = "23.11"; }