test
This commit is contained in:
parent
ad840a141d
commit
49e538439a
2 changed files with 6 additions and 13 deletions
|
@ -19,11 +19,5 @@
|
||||||
desktopManager.xfce.enable = true;
|
desktopManager.xfce.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
# environment.systemPackages = with pkgs; [ ];
|
||||||
arc-kde-theme
|
|
||||||
arc-theme
|
|
||||||
papirus-icon-theme
|
|
||||||
plasma-theme-switcher
|
|
||||||
tailscale-systray
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
{ username, stateVersion, ... }: {
|
{ ... }: {
|
||||||
networking.firewall.allowedTCPPorts = [ 3390 ];
|
networking.firewall.allowedTCPPorts = [ 3390 ];
|
||||||
|
|
||||||
containers.desktop = {
|
containers.rdesktop = {
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
privateNetwork = false;
|
privateNetwork = false;
|
||||||
config = { config, pkgs, lib, ... }: {
|
config = { config, pkgs, lib, username, stateVersion, ... }: {
|
||||||
networking.hostName = "nixos-rdesktop";
|
networking.hostName = "nixos-rdesktop";
|
||||||
system.stateVersion = stateVersion;
|
system.stateVersion = stateVersion;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../common/desktops/xfce
|
../../common/desktops/xfce
|
||||||
../users/${username}
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
allowedTCPPorts = [ 3390 ];
|
allowedTCPPorts = [ 3390 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.xrdp = {
|
services.xrdp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue