24 lines
406 B
Nix
Executable file
24 lines
406 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services = {
|
|
xserver = {
|
|
enable = true;
|
|
autorun = false;
|
|
windowManager.openbox.enable = true;
|
|
};
|
|
xrdp = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
defaultWindowManager = "${pkgs.openbox}/bin/openbox-session";
|
|
#confDir = "/etc/xrdp";
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
pcmanfm
|
|
obconf
|
|
firefox
|
|
gnome.gnome-calculator
|
|
alacritty
|
|
];
|
|
}
|