nix-templates/home/work/xfreerdp.nix

16 lines
379 B
Nix
Raw Normal View History

2025-06-25 01:35:01 -04:00
{
pkgs,
...
}: {
# For remoting into VMs.
# e.g.
# xfreerdp /sec:aad '/u:\AzureAD\esmith@true-helix.com' /v:th-production-m +dynamic-resolution
#
# Do note that hosts file entries are also necessary to map the
# public IP of the device to the computer name (i.e. the /v:)
# to get entra id auth playing nicely.
home.packages = with pkgs; [
freerdp
];
}