gui rollback

This commit is contained in:
2024-04-19 20:38:25 +02:00
parent d6f4bfa68b
commit 79f54abec2
5 changed files with 1 additions and 53 deletions

36
hosts/common/gui.nix Normal file
View File

@@ -0,0 +1,36 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# X Server settings
services.xserver = {
enable = true;
layout = "pl";
xkbVariant = "";
displayManager = {
lightdm = {
enable = false;
};
startx = {
enable = true;
};
};
windowManager = {
dwm = {
enable = true;
};
};
desktopManager = {
xfce = {
enable = false;
};
};
};
}