Add remote desktop stuff to the desktop profile

This commit is contained in:
Bun 2025-07-18 11:57:24 -04:00
parent c7622bd33f
commit 8b37cd3d2e
7 changed files with 17 additions and 7 deletions

View file

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
home = lib.mkIf config.home.desktop.enable {
packages = with pkgs; [
freerdp
remmina
];
persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}".directories =
with lib; with config.home; with config.xdg; [
"data/${removePrefix "${homeDirectory}/" configHome}/remmina"
];
};
}