2024-10-19 19:10:00 +01:00
|
|
|
#this might be redundent
|
2025-07-01 18:03:06 +01:00
|
|
|
{ config, pkgs, callPackage, ... }:
|
2024-10-18 19:30:57 +01:00
|
|
|
{
|
2025-07-01 18:03:06 +01:00
|
|
|
services.xserver = {
|
2024-10-18 19:30:57 +01:00
|
|
|
enable = true;
|
|
|
|
|
|
|
|
desktopManager = {
|
|
|
|
xterm.enable = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
windowManager.i3 = {
|
|
|
|
enable = true;
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
dmenu #application launcher most people use
|
|
|
|
i3status # gives you the default i3 status bar
|
|
|
|
i3lock #default i3 screen locker
|
|
|
|
i3blocks #if you are planning on using i3blocks over i3status
|
|
|
|
picom
|
2025-07-01 18:03:06 +01:00
|
|
|
];
|
2024-10-18 19:30:57 +01:00
|
|
|
};
|
|
|
|
};
|
2025-07-01 18:03:06 +01:00
|
|
|
}
|