aboutsummaryrefslogtreecommitdiff
path: root/modules/retired/x11
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-01-10 19:20:18 -0500
committertdback <tyler@tdback.net>2025-01-10 19:20:18 -0500
commitb8e2eb59a2b84820719e5f6f334fbfbc05019c52 (patch)
treef34acba50e860961c7660a1021264613e9531ef1 /modules/retired/x11
parent91646e9d50a55e21141f98b4fb396296e22c052a (diff)
feat: retire x11 and go full COSMIC/wayland on workstations
Diffstat (limited to 'modules/retired/x11')
-rw-r--r--modules/retired/x11/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/retired/x11/default.nix b/modules/retired/x11/default.nix
new file mode 100644
index 0000000..52e7975
--- /dev/null
+++ b/modules/retired/x11/default.nix
@@ -0,0 +1,33 @@
+{ pkgs, ... }:
+{
+ services = {
+ xserver = {
+ enable = true;
+ xkb.layout = "us";
+ displayManager.lightdm.enable = true;
+ windowManager.bspwm.enable = true;
+ };
+
+ displayManager.autoLogin = {
+ enable = true;
+ user = "tdback";
+ };
+ };
+
+ hardware.graphics.enable32Bit = true;
+
+ environment.systemPackages = with pkgs.xorg; [
+ libX11
+ xset
+ ];
+
+ fonts.packages = with pkgs; [
+ dejavu_fonts
+ dina-font
+ iosevka-comfy.comfy-motion-fixed
+ liberation_ttf
+ noto-fonts
+ noto-fonts-emoji
+ ubuntu_font_family
+ ];
+}