Initial commit
This commit is contained in:
commit
ea1a31f442
37 changed files with 875 additions and 0 deletions
24
openbox.nix
Executable file
24
openbox.nix
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue