dots and configs

This commit is contained in:
2024-04-19 20:19:38 +02:00
parent 96d2193856
commit d6f4bfa68b
8 changed files with 387 additions and 4 deletions

View File

@@ -1,36 +0,0 @@
{
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;
};
};
};
}