This commit is contained in:
albert 2024-03-20 14:16:31 +09:00
parent ad840a141d
commit 49e538439a
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 6 additions and 13 deletions

View file

@ -19,11 +19,5 @@
desktopManager.xfce.enable = true;
};
environment.systemPackages = with pkgs; [
arc-kde-theme
arc-theme
papirus-icon-theme
plasma-theme-switcher
tailscale-systray
];
# environment.systemPackages = with pkgs; [ ];
}

View file

@ -1,22 +1,21 @@
{ username, stateVersion, ... }: {
{ ... }: {
networking.firewall.allowedTCPPorts = [ 3390 ];
containers.desktop = {
containers.rdesktop = {
autoStart = true;
privateNetwork = false;
config = { config, pkgs, lib, ... }: {
config = { config, pkgs, lib, username, stateVersion, ... }: {
networking.hostName = "nixos-rdesktop";
system.stateVersion = stateVersion;
imports = [
../common/desktops/xfce
../users/${username}
../../common/desktops/xfce
];
networking.firewall = {
enable = true;
allowedTCPPorts = [ 3390 ];
};
};
services.xrdp = {
enable = true;