diff options
author | tdback <tyler@tdback.net> | 2025-01-10 19:20:18 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-10 19:20:18 -0500 |
commit | b8e2eb59a2b84820719e5f6f334fbfbc05019c52 (patch) | |
tree | f34acba50e860961c7660a1021264613e9531ef1 /modules/profiles | |
parent | 91646e9d50a55e21141f98b4fb396296e22c052a (diff) |
feat: retire x11 and go full COSMIC/wayland on workstations
Diffstat (limited to 'modules/profiles')
-rw-r--r-- | modules/profiles/x11/default.nix | 33 |
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 - ]; -} |