nix/nixos/containers/rdesktop/default.nix

25 lines
588 B
Nix
Raw Normal View History

{ pkgs, desktop, username, ... }: {
2024-03-20 09:23:30 +01:00
imports = [
2024-04-07 01:42:00 +02:00
../../users/${username}
2024-04-05 11:25:03 +02:00
../../common/desktops/${desktop}
2024-05-01 04:16:26 +02:00
../../common/packages
2024-06-13 06:56:40 +02:00
../../common/modules/fonts.nix
2024-06-25 05:23:53 +02:00
../../common/services/gnupg-agent.nix
2024-12-16 00:56:33 +01:00
../../common/software/cli/scripts.nix
../../common/services/tailscale-autoconnect.nix
2024-08-15 02:20:16 +02:00
../../common/services/syncthing.nix
2024-03-26 01:00:46 +01:00
];
2024-04-05 11:25:03 +02:00
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-module-xrdp ];
2024-06-21 03:50:33 +02:00
services.xrdp = {
enable = true;
2024-06-27 10:28:29 +02:00
openFirewall = true;
audio = {
enable = true;
package = pkgs.pulseaudio-module-xrdp;
};
2024-06-21 03:50:33 +02:00
};
2024-03-20 09:23:30 +01:00
}