aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles/x11/default.nix
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/profiles/x11/default.nix
parent91646e9d50a55e21141f98b4fb396296e22c052a (diff)
feat: retire x11 and go full COSMIC/wayland on workstations
Diffstat (limited to 'modules/profiles/x11/default.nix')
-rw-r--r--modules/profiles/x11/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/modules/profiles/x11/default.nix b/modules/profiles/x11/default.nix
deleted file mode 100644
index 52e7975..0000000
--- a/modules/profiles/x11/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ 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
- ];
-}